Compare commits

...

2 Commits

Author SHA1 Message Date
Charles Bochet cbbb71f727 Fix messaging crons (#14619)
## Context

While refactoring messaging, I forgot that workspaces that have been
created before july do not have 'CALENDAR_EVENT_LIST_FETCH_PENDING' and
'MESSAGE_LIST_FETCH_PENDING' enum values (as we don't sync-metadata the
enum values, we would need a migrate command that has not been written
yet)

In the current implementation CALENDAR_EVENT_LIST_FETCH_PENDING =
FULL_CALENDAR_EVENT_LIST_FETCH_PENDING, so I'm putting it back as it was
before
2025-09-19 17:26:40 +02:00
prastoin f285f9c71e Revert "feat(billing): refacto billing (#14243)"
This reverts commit 43e0cd5d05.
2025-09-19 14:33:59 +02:00
355 changed files with 6113 additions and 16103 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
{
"install": "curl -fsSL https://deb.nodesource.com/setup_24.x | sudo -E bash - && sudo apt-get install -y nodejs && node --version && yarn install && echo 'Setting up Docker Compose environment...' && cd packages/twenty-docker && cp -n docker-compose.yml docker-compose.dev.yml || true && echo 'Dependencies installed and docker-compose prepared'",
"install": "yarn install && echo 'Setting up Docker Compose environment...' && cd packages/twenty-docker && cp -n docker-compose.yml docker-compose.dev.yml || true && echo 'Dependencies installed and docker-compose prepared'",
"start": "sudo service docker start && echo 'Docker service started' && cd packages/twenty-docker && echo 'Installing yq for YAML processing...' && sudo apt-get update -qq && sudo apt-get install -y wget && wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 && sudo chmod +x /usr/local/bin/yq && echo 'Patching docker-compose for local development...' && yq eval 'del(.services.server.image)' -i docker-compose.dev.yml && yq eval '.services.server.build.context = \"../../\"' -i docker-compose.dev.yml && yq eval '.services.server.build.dockerfile = \"./packages/twenty-docker/twenty/Dockerfile\"' -i docker-compose.dev.yml && yq eval 'del(.services.worker.image)' -i docker-compose.dev.yml && yq eval '.services.worker.build.context = \"../../\"' -i docker-compose.dev.yml && yq eval '.services.worker.build.dockerfile = \"./packages/twenty-docker/twenty/Dockerfile\"' -i docker-compose.dev.yml && echo 'Setting up .env file with database configuration...' && echo 'SERVER_URL=http://localhost:3000' > .env && echo 'APP_SECRET='$(openssl rand -base64 32) >> .env && echo 'PG_DATABASE_PASSWORD='$(openssl rand -hex 16) >> .env && echo 'PG_DATABASE_URL=postgres://postgres:password@localhost:5432/postgres' >> .env && echo 'SIGN_IN_PREFILLED=true' >> .env && echo 'Building and starting services...' && docker-compose -f docker-compose.dev.yml up -d --build && echo 'Waiting for services to initialize...' && sleep 30 && echo 'Checking service health...' && docker-compose -f docker-compose.dev.yml ps && echo 'Environment setup complete!'",
"terminals": [
{
+3 -3
View File
@@ -1,10 +1,10 @@
{
"install": "curl -fsSL https://deb.nodesource.com/setup_24.x | sudo -E bash - && sudo apt-get install -y nodejs && node --version && yarn install && echo 'Installing dependencies complete'",
"start": "sudo service docker start && echo 'Docker service started' && sleep 3 && echo 'Starting PostgreSQL and Redis containers...' && make postgres-on-docker && make redis-on-docker && echo 'Waiting for containers to initialize...' && sleep 20 && echo 'Checking container status...' && docker ps --filter name=twenty_ && echo 'Waiting for PostgreSQL to be ready...' && until docker exec twenty_pg pg_isready -U postgres -h localhost; do echo 'PostgreSQL not ready yet, waiting...'; sleep 3; done && echo 'PostgreSQL is ready!' && echo 'Setting up database...' && cd packages/twenty-server && npx nx database:reset twenty-server || echo 'Database already initialized' && echo 'Environment setup complete!'",
"install": "yarn install && echo 'Installing dependencies complete'",
"start": "sudo service docker start && echo 'Docker service started' && sleep 3 && echo 'Starting PostgreSQL and Redis containers...' && make postgres-on-docker && make redis-on-docker && echo 'Waiting for containers to initialize...' && sleep 20 && echo 'Checking container status...' && docker ps --filter name=twenty_ && echo 'Waiting for PostgreSQL to be ready...' && until docker exec twenty_pg pg_isready -U postgres -h localhost; do echo 'PostgreSQL not ready yet, waiting...'; sleep 3; done && echo 'PostgreSQL is ready!' && echo 'Setting up database...' && cd packages/twenty-server && npm run database:init || echo 'Database already initialized' && echo 'Environment setup complete!'",
"terminals": [
{
"name": "Development Server",
"command": "echo 'Waiting for database to be fully ready...' && sleep 30 && until docker exec twenty_pg pg_isready -U postgres -h localhost; do echo 'Waiting for PostgreSQL...'; sleep 2; done && echo 'Starting Twenty development server...' && export SERVER_URL=http://localhost:3000 && export PG_DATABASE_URL=postgres://postgres:postgres@localhost:5432/postgres && yarn start"
"command": "echo 'Waiting for database to be fully ready...' && sleep 30 && until docker exec twenty_pg pg_isready -U postgres -h localhost; do echo 'Waiting for PostgreSQL...'; sleep 2; done && echo 'Starting Twenty development server...' && export SERVER_URL=http://localhost:3000 && export PG_DATABASE_URL=postgres://postgres:password@localhost:5432/postgres && yarn start"
},
{
"name": "Database Management",
-39
View File
@@ -69,45 +69,6 @@ beforeEach(() => {
- **Keep tests isolated** - Independent and repeatable
- **70% unit, 20% integration, 10% E2E** - Test pyramid
## Running Tests
### Single Test File Execution
```bash
# ✅ Run a specific test file (PREFERRED - Fast & Efficient)
npx jest path/to/test.test.ts --config=packages/PROJECT/jest.config.mjs
# Key Benefits:
# - Only runs the specific test file (fast)
# - No dependency resolution overhead
# - Immediate feedback for test development
# ✅ Examples:
# Frontend tests (use .test.ts extension)
npx jest packages/twenty-front/src/modules/localization/utils/detection/detectNumberFormat.test.ts --config=packages/twenty-front/jest.config.mjs
# Server tests (use .spec.ts extension)
npx jest packages/twenty-server/src/utils/__test__/is-work-email.spec.ts --config=packages/twenty-server/jest.config.mjs
# ❌ AVOID - This runs ALL tests (slow):
npx nx test twenty-front --testPathPattern=detectNumberFormat.test.ts
# ✅ Run tests in watch mode for development:
npx jest path/to/test.test.ts --config=packages/twenty-front/jest.config.mjs --watch
# ✅ Run with coverage for single file:
npx jest path/to/test.test.ts --config=packages/twenty-front/jest.config.mjs --coverage
```
### Test Suite Execution
```bash
# Run all tests for a project (use sparingly)
npx nx test twenty-front
npx nx test twenty-server
# Run tests matching a pattern
npx jest --testNamePattern="UserService" --config=packages/twenty-front/jest.config.mjs
```
## Common Patterns
```typescript
// Async testing
File diff suppressed because one or more lines are too long
+41 -63
View File
@@ -269,24 +269,6 @@ export type BillingEndTrialPeriodOutput = {
status?: Maybe<SubscriptionStatus>;
};
export type BillingLicensedProduct = BillingProductDto & {
__typename?: 'BillingLicensedProduct';
description: Scalars['String'];
images?: Maybe<Array<Scalars['String']>>;
metadata: BillingProductMetadata;
name: Scalars['String'];
prices?: Maybe<Array<BillingPriceLicensedDto>>;
};
export type BillingMeteredProduct = BillingProductDto & {
__typename?: 'BillingMeteredProduct';
description: Scalars['String'];
images?: Maybe<Array<Scalars['String']>>;
metadata: BillingProductMetadata;
name: Scalars['String'];
prices?: Maybe<Array<BillingPriceMeteredDto>>;
};
export type BillingMeteredProductUsageOutput = {
__typename?: 'BillingMeteredProductUsageOutput';
grantedCredits: Scalars['Float'];
@@ -305,8 +287,9 @@ export enum BillingPlanKey {
export type BillingPlanOutput = {
__typename?: 'BillingPlanOutput';
licensedProducts: Array<BillingLicensedProduct>;
meteredProducts: Array<BillingMeteredProduct>;
baseProduct: BillingProduct;
meteredProducts: Array<BillingProduct>;
otherLicensedProducts: Array<BillingProduct>;
planKey: BillingPlanKey;
};
@@ -323,7 +306,16 @@ export type BillingPriceMeteredDto = {
priceUsageType: BillingUsageType;
recurringInterval: SubscriptionInterval;
stripePriceId: Scalars['String'];
tiers: Array<BillingPriceTierDto>;
tiers?: Maybe<Array<BillingPriceTierDto>>;
tiersMode?: Maybe<BillingPriceTiersMode>;
};
export type BillingPriceOutput = {
__typename?: 'BillingPriceOutput';
amount: Scalars['Float'];
nickname: Scalars['String'];
recurringInterval: SubscriptionInterval;
stripePriceId: Scalars['String'];
};
export type BillingPriceTierDto = {
@@ -333,19 +325,21 @@ export type BillingPriceTierDto = {
upTo?: Maybe<Scalars['Float']>;
};
/** The different billing price tiers modes */
export enum BillingPriceTiersMode {
GRADUATED = 'GRADUATED',
VOLUME = 'VOLUME'
}
export type BillingPriceUnionDto = BillingPriceLicensedDto | BillingPriceMeteredDto;
export type BillingProduct = {
__typename?: 'BillingProduct';
description: Scalars['String'];
images?: Maybe<Array<Scalars['String']>>;
metadata: BillingProductMetadata;
name: Scalars['String'];
};
export type BillingProductDto = {
description: Scalars['String'];
images?: Maybe<Array<Scalars['String']>>;
metadata: BillingProductMetadata;
name: Scalars['String'];
prices?: Maybe<Array<BillingPriceUnionDto>>;
};
/** The different billing products available */
@@ -368,35 +362,21 @@ export type BillingSessionOutput = {
export type BillingSubscription = {
__typename?: 'BillingSubscription';
billingSubscriptionItems?: Maybe<Array<BillingSubscriptionItemDto>>;
billingSubscriptionItems?: Maybe<Array<BillingSubscriptionItem>>;
currentPeriodEnd?: Maybe<Scalars['DateTime']>;
id: Scalars['UUID'];
interval?: Maybe<SubscriptionInterval>;
metadata: Scalars['JSON'];
phases: Array<BillingSubscriptionSchedulePhase>;
status: SubscriptionStatus;
};
export type BillingSubscriptionItemDto = {
__typename?: 'BillingSubscriptionItemDTO';
billingProduct: BillingProductDto;
export type BillingSubscriptionItem = {
__typename?: 'BillingSubscriptionItem';
billingProduct?: Maybe<BillingProduct>;
hasReachedCurrentPeriodCap: Scalars['Boolean'];
id: Scalars['UUID'];
quantity?: Maybe<Scalars['Float']>;
stripePriceId: Scalars['String'];
};
export type BillingSubscriptionSchedulePhase = {
__typename?: 'BillingSubscriptionSchedulePhase';
end_date: Scalars['Float'];
items: Array<BillingSubscriptionSchedulePhaseItem>;
start_date: Scalars['Float'];
};
export type BillingSubscriptionSchedulePhaseItem = {
__typename?: 'BillingSubscriptionSchedulePhaseItem';
price: Scalars['String'];
quantity?: Maybe<Scalars['Float']>;
stripePriceId?: Maybe<Scalars['String']>;
};
export type BillingTrialPeriodDto = {
@@ -407,10 +387,8 @@ export type BillingTrialPeriodDto = {
export type BillingUpdateOutput = {
__typename?: 'BillingUpdateOutput';
/** All billing subscriptions */
billingSubscriptions: Array<BillingSubscription>;
/** Current billing subscription */
currentBillingSubscription: BillingSubscription;
/** Boolean that confirms query was successful */
success: Scalars['Boolean'];
};
export enum BillingUsageType {
@@ -1411,9 +1389,6 @@ export type Mutation = {
assignRoleToAgent: Scalars['Boolean'];
assignRoleToApiKey: Scalars['Boolean'];
authorizeApp: AuthorizeApp;
cancelSwitchBillingInterval: BillingUpdateOutput;
cancelSwitchBillingPlan: BillingUpdateOutput;
cancelSwitchMeteredPrice: BillingUpdateOutput;
checkCustomDomainValidRecords?: Maybe<DomainValidRecords>;
checkPublicDomainValidRecords?: Maybe<DomainValidRecords>;
checkoutSession: BillingSessionOutput;
@@ -1514,7 +1489,6 @@ export type Mutation = {
runWorkflowVersion: WorkflowRun;
saveImapSmtpCaldavAccount: ImapSmtpCaldavConnectionSuccess;
sendInvitations: SendInvitationsOutput;
setMeteredSubscriptionPrice: BillingUpdateOutput;
signIn: AvailableWorkspacesAndAccessTokensOutput;
signUp: AvailableWorkspacesAndAccessTokensOutput;
signUpInNewWorkspace: SignUpOutput;
@@ -1522,8 +1496,8 @@ export type Mutation = {
skipBookOnboardingStep: OnboardingStepSuccess;
skipSyncEmailOnboardingStep: OnboardingStepSuccess;
submitFormStep: Scalars['Boolean'];
switchBillingPlan: BillingUpdateOutput;
switchSubscriptionInterval: BillingUpdateOutput;
switchToEnterprisePlan: BillingUpdateOutput;
switchToYearlyInterval: BillingUpdateOutput;
syncApplication: Application;
trackAnalytics: Analytics;
updateApiKey?: Maybe<ApiKey>;
@@ -1544,6 +1518,7 @@ export type Mutation = {
updatePageLayoutTab: PageLayoutTab;
updatePageLayoutWidget: PageLayoutWidget;
updatePasswordViaResetToken: InvalidatePassword;
updateSubscriptionItemPrice: BillingUpdateOutput;
updateWebhook?: Maybe<Webhook>;
updateWorkflowRunStep: WorkflowAction;
updateWorkflowVersionPositions: Scalars['Boolean'];
@@ -2072,11 +2047,6 @@ export type MutationSendInvitationsArgs = {
};
export type MutationSetMeteredSubscriptionPriceArgs = {
priceId: Scalars['String'];
};
export type MutationSignInArgs = {
captchaToken?: InputMaybe<Scalars['String']>;
email: Scalars['String'];
@@ -2225,6 +2195,11 @@ export type MutationUpdatePasswordViaResetTokenArgs = {
};
export type MutationUpdateSubscriptionItemPriceArgs = {
priceId: Scalars['String'];
};
export type MutationUpdateWebhookArgs = {
input: UpdateWebhookDto;
};
@@ -2662,9 +2637,10 @@ export type Query = {
getTimelineThreadsFromPersonId: TimelineThreadsWithTotal;
index: Index;
indexMetadatas: IndexConnection;
listPlans: Array<BillingPlanOutput>;
listAvailableMeteredBillingPrices: Array<BillingPriceOutput>;
object: Object;
objects: ObjectConnection;
plans: Array<BillingPlanOutput>;
search: SearchResultConnection;
validatePasswordResetToken: ValidatePasswordResetToken;
versionInfo: VersionInfo;
@@ -3227,7 +3203,9 @@ export type SubscriptionOnDbEventArgs = {
};
export enum SubscriptionInterval {
Day = 'Day',
Month = 'Month',
Week = 'Week',
Year = 'Year'
}
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Verlede"
msgid ": Today"
msgstr ": Vandag"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} lêer(s) het nie opgelaai nie"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} van {formattedRecordsToImportCount} rekords ingevoer."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tipe"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 werkvloeiknoopuitvoerings"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "Stel {objectLabelPlural} toestemmings in"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 werkvloeiknoopuitvoerings"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webtuistes"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Bloklys"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Bespreek 'n Oproep"
@@ -1212,43 +1206,13 @@ msgstr "Kan nie skandeer nie? Kopieer die"
msgid "Cancel"
msgstr "Kanselleer"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Kanselleer Plan"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Kanselleer jou intekening"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Verander Wagwoord"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Verander Plan"
@@ -1289,21 +1253,11 @@ msgstr "Verander Plan"
msgid "Change subdomain?"
msgstr "Verander subdomein?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Verander na Organisasie Plan?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chinees — Tradisioneel"
msgid "Choose a Workspace"
msgstr "Kies 'n Werksruimte"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Kies die formaat wat gebruik word om datumwaarde te vertoon"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Kies jou Proeflopie"
@@ -1521,10 +1480,10 @@ msgstr "Stel op en pas jou kalendervoorkeure aan."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Stel CalDAV-instellings op om u kalendergebeurtenisse te sinchroniseer."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Stel op hoe datums regdeur die app vertoon word"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Stel jou e-posse en kalender instellings op."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Bevestig"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bevestig verwydering van {roleName} rol? Dit kan nie ongedaan gemaak word nie. Alle lede sal aan die verstekrol toegewys word."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Konteks"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kredietkaart Plan"
msgid "Credit Usage"
msgstr "Kredietgebruik"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Krediete Gebruik"
msgid "currencies"
msgstr "geldeenhede"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Pasgemaakte domein opgedateer"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Pasgemaakte voorwerpe"
@@ -2096,6 +2025,11 @@ msgstr "Databasis konfigurasie is tans gedeaktiveer."
msgid "Date"
msgstr "Datum"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Datum en tyd"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Moenie e-posse van team@ support@ noreply@ sinkroniseer nie..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Redigeer betalingsmetode, sien jou fakture en meer"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "E-pos na knipbord gekopieer"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-pos integrasie"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Verhoog sekuriteit deur 'n kode saam met jou wagwoord te vereis"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Geniet 'n {withCreditCardTrialPeriodDuration}-dae gratis proeftydperk"
@@ -2916,35 +2844,20 @@ msgstr "Fout tydens opdatering van rol"
msgid "Error validating approved access domain"
msgstr "Fout tydens bevestiging van goedgekeurde toegangsdomein"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Fout tydens die beëindiging van die proefperiode. Kontak asseblief die Twenty-span."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Fout tydens die oorskakeling van subskripsie na Organisasie Plan."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Fout tydens die oorskakeling van subskripsie na jaarliks."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formaat"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formaat bv. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Frans"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Volle toegang"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Benut jou werkruimte optimaal deur jou span uit te nooi."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Kry jou inskrywing"
@@ -3798,11 +3706,6 @@ msgstr "Integrasies - Instellings"
msgid "Interact with your workspace data"
msgstr "Interaksie met jou werkspasie-data"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Laai tans..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Bestuur API-sleutels en webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Bestuur faktuurinligting"
@@ -4388,11 +4291,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Metadataleêr generasie het misluk"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitor die uitvoering van jou e-posse se sinchronisasie werk"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "maand"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "maandeliks"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nuwe SSO Verskaffer"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Volgende"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Of"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisasie"
@@ -5141,6 +5037,11 @@ msgstr "Organisasie"
msgid "Other"
msgstr "Ander"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Prent"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Privaatheidsbeleid"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "EGS"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Subskripsie"
msgid "Subscription activated."
msgstr "Intekening geaktiveer."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Inschrijving is verander na Organisasie Plan."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Inschrijving is verander na jaarliks."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Ondersteuning"
msgid "Swedish"
msgstr "Sweeds"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Verander na Organisasie"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Hierdie waarde sal in die databasis gestoor word."
msgid "This week"
msgstr "Hierdie week"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Hou jou {intervalLabel} werkvloeikredietverbruik dop."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Proeflopie"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Onbekende fout"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Onbeperkte kontakte"
@@ -7145,12 +7015,6 @@ msgstr "Opdateer agentinligting"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Werk u rekeningkonfigurasie by. Stel enige kombinasie van IMAP, SMTP, en CalDAV op soos benodig."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Aansig"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Sien faktuurbesonderhede"
@@ -7548,12 +7412,12 @@ msgstr "Skryf 'n beskrywing vir hierdie agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "jaar"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "jaarliks"
@@ -7603,30 +7467,20 @@ msgstr ""
"Jy kan nie hierdie verbinding wysig omdat dit opgespoorde tabelle het nie.\n"
"As jy veranderinge wil aanbring, skep asseblief 'n nuwe verbinding of ontkoppel eers die tabelle."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "U sal ${enterprisePrice} per gebruiker per maand gehef word, jaarliks gefaktureer."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "U sal ${enterprisePrice} per gebruiker per maand gehef word."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "U sal ${yearlyPrice} per gebruiker per maand gehef word, jaarliks gefaktureer. 'n Prorata met u huidige subskripsie sal toegepas word."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Jou naam soos dit vertoon sal word"
msgid "Your name as it will be displayed on the app"
msgstr "Jou naam soos dit op die app vertoon sal word"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "U werksruimte het nie 'n aktiewe intekening nie. Kontak asseblief u admin."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Jou werkskerm sal onaktief gemaak word"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr "الماضي"
msgid ": Today"
msgstr ": اليوم"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "فشل تحميل {failedCount} ملف/ملفات"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr ""
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. نوع"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "١٠٬٠٠٠ تنفيذ لعقدة سير العمل"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "٢. تعيين أذونات {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "٢٠٬٠٠٠ تنفيذ لعقدة سير العمل"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "واجهة برمجة التطبيقات"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "واجهة برمجة التطبيقات والويب هوك"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "القائمة السوداء"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "احجز مكالمة"
@@ -1212,43 +1206,13 @@ msgstr "هل لا يمكنك المسح؟ انسخ الـ"
msgid "Cancel"
msgstr "إلغاء"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "إلغاء الخطة"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "إلغاء الاشتراك"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "تغيير كلمة السر"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "تغيير الخطة"
@@ -1289,21 +1253,11 @@ msgstr "تغيير الخطة"
msgid "Change subdomain?"
msgstr "تغيير النطاق الفرعي؟"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "التغيير إلى خطة المؤسسة؟"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "الصينية — التقليدية"
msgid "Choose a Workspace"
msgstr "اختر مساحة العمل"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "اختر التنسيق المستخدم لعرض قيمة التاريخ"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "اختر تجربتك"
@@ -1521,10 +1480,10 @@ msgstr "قم بتهيئة وتخصيص تفضيلات التقويم الخاص
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "قم بتكوين إعدادات CalDAV لمزامنة أحداث التقويم الخاصة بك."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "ضبط كيفية عرض التواريخ في التطبيق"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "ضبط إعدادات بريدك الإلكتروني والتقويم."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "تأكيد"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "تأكيد حذف دور {roleName}؟ لا يمكن التراجع عن هذا الإجراء. سيتم إعادة تعيين جميع الأعضاء إلى الدور الافتراضي."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "السياق"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "خطة الرصيد"
msgid "Credit Usage"
msgstr "استخدام الاعتمادات"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "الإعتمادات المستخدمة"
msgid "currencies"
msgstr "العملات"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "النطاق المخصص محدث"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "كائنات مخصصة"
@@ -2096,6 +2025,11 @@ msgstr "تكوين قاعدة البيانات معطل حالياً."
msgid "Date"
msgstr "تاريخ"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "التاريخ والوقت"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "لا تقم بمزامنة رسائل البريد الإلكتروني
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "تعديل طريقة الدفع، ومشاهدة الفواتير والمزيد"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "تم نسخ البريد الإلكتروني إلى الحافظة"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "تكامل البريد الإلكتروني"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "يعزز الأمان من خلال طلب رمز مع كلمة المرور الخاصة بك"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "استمتع بفترة تجربة مجانية لمدة {withCreditCardTrialPeriodDuration} أيام"
@@ -2916,35 +2844,20 @@ msgstr "خطأ في تحديث الدور"
msgid "Error validating approved access domain"
msgstr "خطأ في التحقق من نطاق الوصول الموافق عليه"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "خطأ أثناء إنهاء فترة التجربة، يرجى التواصل مع فريق Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "حدث خطأ أثناء تغيير الاشتراك إلى خطة المؤسسة."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "حدث خطأ أثناء تغيير الاشتراك إلى سنوي."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "التنسيق"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "صيغة مثلاً d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "الفرنسية"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "وصول كامل"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "استفد من مساحة العمل الخاصة بك عن طريق دعوة فريقك."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "احصل على اشتراكك"
@@ -3798,11 +3706,6 @@ msgstr "التكاملات - إعدادات"
msgid "Interact with your workspace data"
msgstr "تفاعل مع بيانات مساحة العمل الخاصة بك"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "تحميل..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "إدارة مفاتيح واجهة برمجة التطبيقات و ويب هوك"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "إدارة معلومات الفوترة"
@@ -4388,11 +4291,6 @@ msgstr "البيانات الوصفية"
msgid "Metadata file generation failed"
msgstr "فشل في توليد ملف البيانات الوصفية"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "مراقبة تنفيذ مهمة مزامنة البريد الإلكتروني الخاصة بك"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "شهر"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "شهري"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "موفر دخول موحد جديد"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "التالي"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "أو"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "المؤسسة"
@@ -5141,6 +5037,11 @@ msgstr "المؤسسة"
msgid "Other"
msgstr "أخرى"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "صورة"
msgid "Plan"
msgstr "الخطة"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "\\\\"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "محترف"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "التسجيل الموحد"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "تسجيل الدخول الأحادي (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "الاشتراك"
msgid "Subscription activated."
msgstr "تم تفعيل الاشتراك."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "تم تغيير الاشتراك إلى خطة المؤسسة."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "تم تغيير الاشتراك إلى سنوي."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "الدعم"
msgid "Swedish"
msgstr "السويدية"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "التغيير إلى مؤسسة"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "سيتم حفظ هذه القيمة في قاعدة البيانات."
msgid "This week"
msgstr "هذا الأسبوع"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "تتبع استهلاكك من اعتمادات سير العمل {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "تجربة"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "خطأ غير معروف"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "جهات اتصال غير محدودة"
@@ -7145,12 +7015,6 @@ msgstr "تحديث معلومات الوكيل"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "قم بتحديث تكوين حسابك. قم بتكوين أي مجموعة من IMAP و SMTP و CalDAV حسب الحاجة."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "عرض"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "عرض تفاصيل الفوترة"
@@ -7548,12 +7412,12 @@ msgstr "اكتب وصفًا لهذا الوكيل"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "عام"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "سنوي"
@@ -7603,30 +7467,20 @@ msgstr ""
"لا يمكنك تحرير هذا الاتصال لأنه يحتوي على جداول المتابعة. \n"
"إذا كنت بحاجة إلى إجراء تغييرات، يرجى إنشاء اتصال جديد أو فصل الجداول أولاً."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "سيتم فرض ${enterprisePrice} لكل مستخدم كل شهر يتم احتسابها سنوياً."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "سيتم فرض ${enterprisePrice} لكل مستخدم كل شهر."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "سيتم فرض ${yearlyPrice} لكل مستخدم كل شهر يتم احتسابها سنوياً. سيتم تطبيق تناسب مع اشتراكك الحالي."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "اسمك كما سيتم عرضه"
msgid "Your name as it will be displayed on the app"
msgstr "اسمك كما سيتم عرضه على التطبيق"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "مساحة العمل الخاصة بك لا تحتوي على اشتراك نشط. يرجى الاتصال بالمسؤول الخاص بك."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "سيتم تعطيل مساحة عملك"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Passat"
msgid ": Today"
msgstr ": Avui"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} fitxer(s) no s'ha(n) pogut carregar"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} de {formattedRecordsToImportCount} registres importats."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tipus"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 execucions de nodes de flux de treball"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Establiu permisos per a {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 execucions de nodes de flux de treball"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API i Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Llista de blocatges"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Reserva una trucada"
@@ -1212,43 +1206,13 @@ msgstr "No pots escanejar? Copia la"
msgid "Cancel"
msgstr "Cancel·la"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Cancel·la el pla"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Cancel·la la subscripció"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Canvia la contrasenya"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Canviar Pla"
@@ -1289,21 +1253,11 @@ msgstr "Canviar Pla"
msgid "Change subdomain?"
msgstr "Canviar el subdomini?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Canviar al Pla d'Organització?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Xinès — Tradicional"
msgid "Choose a Workspace"
msgstr "Tria un espai de treball"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Tria el format utilitzat per mostrar el valor de la data"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Trieu la vostra prova"
@@ -1521,10 +1480,10 @@ msgstr "Configureu i personalitzeu les vostres preferències del calendari."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configureu la configuració de CalDAV per sincronitzar els vostres esdeveniments del calendari."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Configureu com es mostren les dates a tota l'aplicació"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configureu els vostres correus electrònics i les preferències del cale
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Confirmar"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirmeu la supressió del rol {roleName}? Aquesta acció no es pot desfer. Tots els membres seran reassignats al rol predeterminat."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Context"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Pla de crèdit"
msgid "Credit Usage"
msgstr "Ús del crèdit"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Crèdits utilitzats"
msgid "currencies"
msgstr "monedes"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Domini personalitzat actualitzat"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objectes personalitzats"
@@ -2096,6 +2025,11 @@ msgstr "La configuració de la base de dades està actualment desactivada."
msgid "Date"
msgstr "Data"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Data i hora"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "No sincronitzar correus de team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Edita el mètode de pagament, veure les factures i més"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Correu electrònic copiat al porta-retalls"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integració de correu electrònic"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Millora la seguretat requerint un codi juntament amb la teva contrasenya"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Gaudeix d'un període de prova gratuït de {withCreditCardTrialPeriodDuration} dies"
@@ -2916,35 +2844,20 @@ msgstr "Error en actualitzar el rol"
msgid "Error validating approved access domain"
msgstr "Error en validar el domini d'accés aprovat"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Error mentre finalitzava el període de prova. Si us plau contacti amb l'equip de Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Error al canviar la subscripció al Pla d'Organització."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Error en canviar la subscripció a l'any."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format p. ex. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francès"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Accés complet"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Treu el màxim partit al teu espai de treball convidant al teu equip."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Obteniu la vostra subscripció"
@@ -3798,11 +3706,6 @@ msgstr "Integracions - Configuració"
msgid "Interact with your workspace data"
msgstr "Interactua amb les dades del teu espai de treball"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Carregant..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Gestionar claus API i webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Gestiona la informació de facturació"
@@ -4388,11 +4291,6 @@ msgstr "Metadades"
msgid "Metadata file generation failed"
msgstr "Error en la generació del fitxer de metadades"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Superviseu l'execució de la sincronització dels vostres correus electrònics"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "mes"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "mensual"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nou proveïdor SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Següent"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "O"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organització"
@@ -5141,6 +5037,11 @@ msgstr "Organització"
msgid "Other"
msgstr "Altres"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Fotografia"
msgid "Plan"
msgstr "Pla"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Política de Privacitat"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Subscripció"
msgid "Subscription activated."
msgstr "Subscripció activada."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "La subscripció ha canviat al Pla d'Organització."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "La subscripció ha canviat a anual."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Suport"
msgid "Swedish"
msgstr "Suec"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Passar a Organització"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Aquest valor s'emmagatzemarà a la base de dades."
msgid "This week"
msgstr "Aquesta setmana"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Segueix el consum de crèdit del flux de treball de {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Prova"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Error desconegut"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contactes il·limitats"
@@ -7145,12 +7015,6 @@ msgstr "Actualitza la informació de l'agent"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Actualitza la configuració del teu compte. Configureu qualsevol combinació d'IMAP, SMTP i CalDAV segons calgui."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Vista"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Veure els detalls de facturació"
@@ -7548,12 +7412,12 @@ msgstr "Escriu una descripció per a aquest agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "any"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "anual"
@@ -7603,30 +7467,20 @@ msgstr ""
"No pots editar aquesta connexió perquè té taules rastrejades.\n"
"Si necessites fer canvis, crea una nova connexió o desincronitza primer les taules."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Se us cobrarà ${enterprisePrice} per usuari al mes facturat anualment."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Se us cobrarà ${enterprisePrice} per usuari al mes."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Se us cobrarà ${yearlyPrice} per usuari al mes facturat anualment. S'aplicarà un prorrateig amb la vostra subscripció actual."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "El vostre nom tal com serà mostrat"
msgid "Your name as it will be displayed on the app"
msgstr "El vostre nom tal com serà mostrat a l'aplicació"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "El teu espai de treball no té una subscripció activa. Si us plau, contacta amb el teu administrador."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "El vostre espai de treball serà desactivat"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Minulost"
msgid ": Today"
msgstr ": Dnes"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} soubor(y) se nepodařilo nahrát"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} z {formattedRecordsToImportCount} záznamů importováno."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Typ"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 spuštění uzlu pracovního postupu"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Nastavte oprávnění pro {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 spuštění uzlu pracovního postupu"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Blacklist"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Objednat hovor"
@@ -1212,43 +1206,13 @@ msgstr "Nemůžete skenovat? Zkopírujte"
msgid "Cancel"
msgstr "Storno"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Zrušit plán"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Zrušit vaše předplatné"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Změnit heslo"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Změnit plán"
@@ -1289,21 +1253,11 @@ msgstr "Změnit plán"
msgid "Change subdomain?"
msgstr "Změnit subdoménu?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Změnit na organizační plán?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Čínština — tradiční"
msgid "Choose a Workspace"
msgstr "Vyberte si pracovní prostor"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Vyberte formát použitý k zobrazení datumové hodnoty"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Vyberte si Trial"
@@ -1521,10 +1480,10 @@ msgstr "Nakonfigurujte a přizpůsobte si předvolby kalendáře."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Konfigurujte nastavení CalDAV pro synchronizaci událostí kalendáře."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Nakonfigurujte, jak se mají zobrazovat data v aplikaci"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Nakonfigurujte nastavení svých e-mailů a kalendáře."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Potvrdit"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Opravdu chcete smazat roli {roleName}? Toto akci nelze vrátit zpět. Všichni členové budou přeřazeni na výchozí roli."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Kontext"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kreditní plán"
msgid "Credit Usage"
msgstr "Využití kreditu"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Použité kredity"
msgid "currencies"
msgstr "měny"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Vlastní doména aktualizována"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Vlastní objekty"
@@ -2096,6 +2025,11 @@ msgstr "Konfigurace databáze je momentálně zakázána."
msgid "Date"
msgstr "Datum"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Datum a čas"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Nesynchronizovat e-maily z team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Upravit způsob platby, zobrazit faktury a další"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email zkopírován do schránky"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integrace e-mailů"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Zvyšuje bezpečnost tím, že vyžaduje kód společně s vaším heslem"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Užijte si {withCreditCardTrialPeriodDuration}-denní bezplatnou zkušební dobu"
@@ -2916,35 +2844,20 @@ msgstr "Chyba při aktualizaci role"
msgid "Error validating approved access domain"
msgstr "Chyba při ověřování schválené přístupové domény"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Chyba při ukončování zkušební doby. Kontaktujte tým Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Chyba při přepínání předplatného na organizační plán."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Chyba při přepínání předplatného na roční."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formát"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formát např. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francouzština"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Plný přístup"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Získejte maximum ze svého pracovního prostoru tím, že pozvete svůj tým."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Získejte své předplatné"
@@ -3798,11 +3706,6 @@ msgstr "Integrace - Nastavení"
msgid "Interact with your workspace data"
msgstr "Interakce s daty vašeho pracovního prostoru"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Načítání..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Spravovat API klíče a webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Správa fakturačních údajů"
@@ -4388,11 +4291,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Generování souboru metadat selhalo"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Sledujte provádění synchronizační úlohy vašich e-mailů"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "měsíc"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "měsíční"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nový poskytovatel SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Další"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Nebo"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organizace"
@@ -5141,6 +5037,11 @@ msgstr "Organizace"
msgid "Other"
msgstr "Ostatní"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Obrázek"
msgid "Plan"
msgstr "Plán"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Zásady ochrany osobních údajů"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Jednotné přihlášení"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Předplatné"
msgid "Subscription activated."
msgstr "Předplatné aktivováno."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Předplatné bylo změněno na organizační plán."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Předplatné bylo změněno na roční."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Podpora"
msgid "Swedish"
msgstr "Švédština"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Změnit na organizaci"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Tato hodnota bude uložena do databáze."
msgid "This week"
msgstr "Tento týden"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Sledujte spotřebu kreditů ve svém pracovním postupu na {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Zkušební verze"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Neznámá chyba"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Neomezený počet kontaktů"
@@ -7145,12 +7015,6 @@ msgstr "Aktualizovat informace o agentovi"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Aktualizujte konfiguraci vašeho účtu. Nastavte libovolnou kombinaci IMAP, SMTP a CalDAV podle potřeby."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Pohled"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Zobrazit detaily fakturace"
@@ -7548,12 +7412,12 @@ msgstr "Napište popis tohoto agenta"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "rok"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "roční"
@@ -7603,30 +7467,20 @@ msgstr ""
"Nelze upravit toto připojení, lze se sledovanými tabulkami.\n"
"Pokud je třeba provést změny, vytvořte nové připojení nebo nejprve zrušte synchronizaci tabulek."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Bude vám účtováno ${enterprisePrice} za uživatele za měsíc, účtováno ročně."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Bude vám účtováno ${enterprisePrice} za uživatele za měsíc."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Bude vám účtováno ${yearlyPrice} za uživatele za měsíc, účtováno ročně. Bude aplikována poměrná částka s vaším současným předplatným."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Vaše jméno, jak bude zobrazeno"
msgid "Your name as it will be displayed on the app"
msgstr "Vaše jméno, jak bude zobrazeno v aplikaci"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Vaše pracovní plošina nemá aktivní předplatné. Prosím, kontaktujte svého administrátora."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Váš pracovní prostor bude deaktivován"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Fortid"
msgid ": Today"
msgstr ": I dag"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} fil(er) mislykkedes at uploade"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} ud af {formattedRecordsToImportCount} poster importeret."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Skriv"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 workflow node eksekveringer"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Indstil {objectLabelPlural} tilladelser"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 workflow node eksekveringer"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Blokeringsliste"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Book et opkald"
@@ -1212,43 +1206,13 @@ msgstr "Kan ikke scanne? Kopier"
msgid "Cancel"
msgstr "Annuller"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Annuller abonnement"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Annuller dit abonnement"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Skift kodeord"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Ændre Pakke"
@@ -1289,21 +1253,11 @@ msgstr "Ændre Pakke"
msgid "Change subdomain?"
msgstr "Skift subdomæne?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Skift til Organisationsplan?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Kinesisk — Traditionelt"
msgid "Choose a Workspace"
msgstr "Vælg et arbejdsområde"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Vælg det format, der bruges til at vise datoværdien"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Vælg din prøveperiode"
@@ -1521,10 +1480,10 @@ msgstr "Konfigurer og tilpas dine kalenderpræferencer."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Konfigurer CalDAV-indstillingerne for at synkronisere dine kalenderevents."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Konfigurer, hvordan datoer vises i hele appen"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Konfigurer dine e-mails og kalenderindstillinger."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Bekr\\u00e6ft"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bekræft sletning af {roleName} rolle? Dette kan ikke fortrydes. Alle medlemmer vil blive tildelt standardrollen."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Kontekst"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kreditplan"
msgid "Credit Usage"
msgstr "Brug af kreditter"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Brugte kreditter"
msgid "currencies"
msgstr "valutaer"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Brugerdefineret domæne opdateret"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Tilpassede objekter"
@@ -2096,6 +2025,11 @@ msgstr "Databasekonfiguration er i øjeblikket deaktiveret."
msgid "Date"
msgstr "Dato"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Dato og tid"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Synkronisér ikke e-mails fra team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Rediger betalingsmetode, se dine fakturaer og mere"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email kopieret til udklipsholder"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-mailintegration"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Forbedrer sikkerheden ved at kræve en kode sammen med din adgangskode"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Nyd en {withCreditCardTrialPeriodDuration}-dages gratis prøveperiode"
@@ -2916,35 +2844,20 @@ msgstr "Fejl ved opdatering af rolle"
msgid "Error validating approved access domain"
msgstr "Fejl ved validering af godkendt adgangsdomæne"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Fejl ved afslutning af prøveperiode. Kontakt venligst Twenty team."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Fejl under skift af abonnement til Organisationsplan."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Fejl under skift af abonnement til årlig."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format f.eks. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Fransk"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Fuld adgang"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Få mest muligt ud af din arbejdsplads ved at invitere dit team."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Få dit abonnement"
@@ -3798,11 +3706,6 @@ msgstr "Integrationer - Indstillinger"
msgid "Interact with your workspace data"
msgstr "Interagér med dine arbejdspladsdata"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Indlæser..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Administrer API nøgler og webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Administrer faktureringsoplysninger"
@@ -4388,11 +4291,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Generering af metadatafil mislykkedes"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Overvåg eksekveringen af dit e-mailsynkroniseringsjob"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "måned"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "månedligt"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Ny SSO-udbyder"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Næste"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Eller"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisation"
@@ -5141,6 +5037,11 @@ msgstr "Organisation"
msgid "Other"
msgstr "Andet"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Billede"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Privatlivspolitik"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abonnement"
msgid "Subscription activated."
msgstr "Abonnement aktiveret."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Abonnementet er blevet skiftet til Organisationsplan."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Abonnementet er blevet skiftet til årligt."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Support"
msgid "Swedish"
msgstr "Svensk"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Skift til Organisation"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Denne værdi vil blive gemt til databasen."
msgid "This week"
msgstr "Denne uge"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Følg dit {intervalLabel} workflow kreditforbrug."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Prøve"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Ukendt fejl"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Ubegrænsede kontakter"
@@ -7145,12 +7015,6 @@ msgstr "Opdater agentoplysninger"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Opdater din kontokonfiguration. Konfigurer enhver kombination af IMAP, SMTP og CalDAV efter behov."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Visning"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Se faktureringsdetaljer"
@@ -7548,12 +7412,12 @@ msgstr "Skriv en beskrivelse for denne agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "år"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "årligt"
@@ -7603,30 +7467,20 @@ msgstr ""
"Du kan ikke redigere denne forbindelse, da den har sporede tabeller.\n"
"Hvis du har brug for at foretage ændringer, skal du oprette en ny forbindelse eller afsynkronisere tabellerne først."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Du vil blive opkrævet ${enterprisePrice} pr. bruger pr. måned, faktureret årligt."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Du vil blive opkrævet ${enterprisePrice} pr. bruger pr. måned."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Du vil blive opkrævet ${yearlyPrice} pr. bruger pr. måned, faktureret årligt. En forholdsmæssig beregning med dit nuværende abonnement vil blive anvendt."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Dit navn som det vil blive vist"
msgid "Your name as it will be displayed on the app"
msgstr "Dit navn som det vil blive vist i appen"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Dit arbejdsområde har ikke et aktivt abonnement. Kontakt venligst din administrator."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Dit arbejdsområde vil blive deaktiveret"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Vergangenheit"
msgid ": Today"
msgstr ": Heute"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} Datei(en) konnte(n) nicht hochgeladen werden"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} von {formattedRecordsToImportCount} Datensätzen importiert."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}€"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Typ"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 Workflow-Knotenausführungen"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Setzen Sie {objectLabelPlural} Berechtigungen"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 Workflow-Knotenausführungen"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Blockliste"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Anruf buchen"
@@ -1212,43 +1206,13 @@ msgstr "Kann nicht gescannt werden? Kopieren Sie das"
msgid "Cancel"
msgstr "Abbrechen"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Plan kündigen"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Abonnement kündigen"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Passwort ändern"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Plan ändern"
@@ -1289,21 +1253,11 @@ msgstr "Plan ändern"
msgid "Change subdomain?"
msgstr "Subdomain ändern?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Zum Organisationsplan wechseln?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chinesisch - Traditionell"
msgid "Choose a Workspace"
msgstr "Wählen Sie einen Arbeitsbereich"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Wählen Sie das Format zur Anzeige des Datumswertes"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Wählen Sie Ihre Testphase"
@@ -1521,10 +1480,10 @@ msgstr "Kalendereinstellungen konfigurieren und anpassen."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Konfigurieren Sie die CalDAV-Einstellungen, um Ihre Kalenderereignisse zu synchronisieren."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Anzeigen von Datumsangaben in der App konfigurieren"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "E-Mail- und Kalendereinstellungen konfigurieren."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Best\\u00e4tigen"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Löschung der Rolle {roleName} bestätigen? Dies kann nicht rückgängig gemacht werden. Alle Mitglieder werden der Standardrolle zugewiesen."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Kontext"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Guthabenplan"
msgid "Credit Usage"
msgstr "Guthabenverbrauch"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Verwendete Guthaben"
msgid "currencies"
msgstr "Währungen"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Benutzerdefinierte Domain aktualisiert"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Benutzerdefinierte Objekte"
@@ -2096,6 +2025,11 @@ msgstr "Datenbankkonfiguration ist derzeit deaktiviert."
msgid "Date"
msgstr "Datum"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Datum und Uhrzeit"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Kein E-Mail-Sync von team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Zahlungsmethode bearbeiten, Rechnungen einsehen und mehr"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "E-Mail in die Zwischenablage kopiert"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-Mail-Integration"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Verbessert die Sicherheit, indem zusätzlich zu Ihrem Passwort ein Code erforderlich ist"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Genießen Sie eine {withCreditCardTrialPeriodDuration}-tägige kostenlose Testphase"
@@ -2916,35 +2844,20 @@ msgstr "Fehler beim Aktualisieren der Rolle"
msgid "Error validating approved access domain"
msgstr "Fehler bei der Validierung der genehmigten Zugriffsdomäne"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Fehler beim Beenden der Testphase. Bitte kontaktieren Sie das Twenty-Team."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Fehler beim Wechseln des Abonnements zum Organisationsplan."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Fehler beim Wechseln des Abonnements zu jährlich."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format z.B. T-MMM-J (qqq''JJ)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Französisch"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Vollzugriff"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Holen Sie das Beste aus Ihrem Arbeitsbereich heraus, indem Sie Ihr Team einladen."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Abonnement abschließen"
@@ -3798,11 +3706,6 @@ msgstr "Integrationen - Einstellungen"
msgid "Interact with your workspace data"
msgstr "Interagieren Sie mit Ihren Arbeitsbereichsdaten"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Laden..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "API-Schlüssel und Webhooks verwalten"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Verwalten Sie die Rechnungsdaten"
@@ -4388,11 +4291,6 @@ msgstr "Metadaten"
msgid "Metadata file generation failed"
msgstr "Generierung der Metadatendatei fehlgeschlagen"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Überwachen Sie die Ausführung Ihres Auftrags zur Synchronisierung von E-Mails"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "Monat"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "monatlich"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Neuer SSO-Anbieter"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Weiter"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Oder"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisation"
@@ -5141,6 +5037,11 @@ msgstr "Organisation"
msgid "Other"
msgstr "Andere"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Bild"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Datenschutzrichtlinie"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abonnement"
msgid "Subscription activated."
msgstr "Abonnement aktiviert."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Abonnement wurde auf den Organisationsplan umgestellt."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Abonnement wurde auf jährlich umgestellt."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Support"
msgid "Swedish"
msgstr "Schwedisch"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Zu Organisation wechseln"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Dieser Wert wird in die Datenbank gespeichert."
msgid "This week"
msgstr "Diese Woche"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Verfolgen Sie Ihren {intervalLabel} Workflow-Guthabenverbrauch."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Testversion"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Unbekannter Fehler"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Unbegrenzte Kontakte"
@@ -7145,12 +7015,6 @@ msgstr "Agenteninformationen aktualisieren"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Aktualisieren Sie die Einstellungen Ihres Kontos. Konfigurieren Sie nach Bedarf jede Kombination von IMAP, SMTP und CalDAV."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Ansicht"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Rechnungsdetails anzeigen"
@@ -7548,12 +7412,12 @@ msgstr "Schreiben Sie eine Beschreibung für diesen Agenten"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "Jahr"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "jährlich"
@@ -7603,30 +7467,20 @@ msgstr ""
"Sie können diese Verbindung nicht bearbeiten, da sie verfolgte Tabellen enthält.\n"
"Wenn Sie Änderungen vornehmen müssen, erstellen Sie bitte eine neue Verbindung oder trennen Sie zuerst die Tabellen."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Ihnen werden ${enterprisePrice} pro Benutzer und Monat, jährlich abgerechnet, berechnet."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Ihnen werden ${enterprisePrice} pro Benutzer und Monat berechnet."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Ihnen werden ${yearlyPrice} pro Benutzer und Monat, jährlich abgerechnet, berechnet. Eine anteilige Anpassung mit Ihrem aktuellen Abonnement wird vorgenommen."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Ihr Name, wie er angezeigt wird"
msgid "Your name as it will be displayed on the app"
msgstr "Ihr Name, wie er in der App angezeigt wird"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Ihr Arbeitsbereich hat kein aktives Abonnement. Bitte kontaktieren Sie Ihren Administrator."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Ihr Arbeitsbereich wird deaktiviert"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Παρελθόν"
msgid ": Today"
msgstr ": Σήμερα"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} αρχείο(-α) απέτυχε να μεταφορτωθ
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} από {formattedRecordsToImportCount} εγγραφές εισήχθησαν."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Τύπος"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 εκτελέσεις κόμβου ροής εργασιών"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Ορίστε δικαιώματα {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 εκτελέσεις κόμβου ροής εργασιών"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Μαύρη λίστα"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Κλείστε ένα τηλεφώνημα"
@@ -1212,43 +1206,13 @@ msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το
msgid "Cancel"
msgstr "Ακύρωση"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Ακύρωση σχεδίου"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Ακύρωση της συνδρομής σας"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Αλλαγή Κωδικού"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Αλλαγή σχεδίου"
@@ -1289,21 +1253,11 @@ msgstr "Αλλαγή σχεδίου"
msgid "Change subdomain?"
msgstr "Αλλαγή υποτομέα;"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Αλλαγή σε οργανωτικό σχέδιο;"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Κινέζικα — Παραδοσιακά"
msgid "Choose a Workspace"
msgstr "Επιλέξτε έναν Χώρο Εργασίας"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Επιλέξτε τη μορφή που χρησιμοποιείται για την εμφάνιση της τιμής ημερομηνίας"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Επιλέξτε τη Δοκιμή σας"
@@ -1521,10 +1480,10 @@ msgstr "Ρυθμίστε και προσαρμόστε τις προτιμήσε
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Ρυθμίστε τις παραμέτρους του CalDAV για συγχρονισμό των γεγονότων του ημερολογίου σας."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Ρυθμίστε πώς εμφανίζονται οι ημερομηνίες σε όλη την εφαρμογή"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Ρυθμίστε τις ρυθμίσεις email και ημερολογ
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Επιβεβαίωση"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Επιβεβαιώστε την διαγραφή του ρόλου {roleName}; Αυτό δεν μπορεί να αναιρεθεί. Όλα τα μέλη θα επανατοποθετηθούν στον προεπιλεγμένο ρόλο."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Περιβάλλον"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Πρόγραμμα Πιστώσεων"
msgid "Credit Usage"
msgstr "Χρήση Πιστώσεων"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Χρησιμοποιημένες Πιστώσεις"
msgid "currencies"
msgstr "νομίσματα"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Προσαρμοσμένος τομέας ενημερώθηκε"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Προσαρμοσμένα αντικείμενα"
@@ -2096,6 +2025,11 @@ msgstr "Η διαμόρφωση της βάσης δεδομένων είναι
msgid "Date"
msgstr "Ημερομηνία"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Ημερομηνία και ώρα"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Μην συγχρονίζετε email από team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Επεξεργασία τρόπου πληρωμής, προβολή των τιμολογίων σου και άλλα"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Το email αντιγράφηκε στο πρόχειρο"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Ενσωμάτωση με email"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Ενισχύει την ασφάλεια απαιτώντας έναν κωδικό μαζί με τον κωδικό πρόσβασής σας"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Απολαύστε μια δωρεάν δοκιμαστική περίοδο {withCreditCardTrialPeriodDuration} ημερών"
@@ -2916,35 +2844,20 @@ msgstr "Σφάλμα κατά την ενημέρωση του ρόλου"
msgid "Error validating approved access domain"
msgstr "Σφάλμα κατά την επικύρωση του εγκεκριμένου domain πρόσβασης"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Σφάλμα κατά τη λήξη της δοκιμαστικής περιόδου. Επικοινωνήστε με την ομάδα Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Σφάλμα κατά την αλλαγή συνδρομής σε οργανωτικό σχέδιο."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Σφάλμα κατά την αλλαγή συνδρομής σε ετήσια."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Μορφή"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Μορφή π.χ. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Γαλλικά"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Πλήρης πρόσβαση"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Αξιοποιείστε τον χώρο εργασίας σας με τον καλύτερο τρόπο, καλώντας την ομάδα σας."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Αποκτήστε τη συνδρομή σας"
@@ -3798,11 +3706,6 @@ msgstr "Ενσωματώσεις - Ρυθμίσεις"
msgid "Interact with your workspace data"
msgstr "Αλληλεπιδράστε με τα δεδομένα του χώρου εργασίας σας"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Φόρτωση..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Διαχείριση κλειδιών API και webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Διαχείριση πληροφοριών χρέωσης"
@@ -4388,11 +4291,6 @@ msgstr "Μεταδεδομένα"
msgid "Metadata file generation failed"
msgstr "Αποτυχία δημιουργίας αρχείου μεταδεδομένων"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Παρακολούθηση της εκτέλεσης του συγχρονισμού των email σας"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "μήνας"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "μηνιαία"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Νέος πάροχος SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Επόμενο"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Ή"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Οργανωτικός"
@@ -5141,6 +5037,11 @@ msgstr "Οργανωτικός"
msgid "Other"
msgstr "Άλλο"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Εικόνα"
msgid "Plan"
msgstr "Σχέδιο"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Πολιτική Απορρήτου"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6433,7 +6328,7 @@ msgid "SSO"
msgstr "Ενιαίο Σύστημα Εισόδου"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6542,21 +6437,16 @@ msgstr "Συνδρομή"
msgid "Subscription activated."
msgstr "Η συνδρομή ενεργοποιήθηκε."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Η συνδρομή έχει αλλάξει σε οργανωτικό σχέδιο."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Η συνδρομή έχει αλλάξει σε ετήσια."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6588,21 +6478,11 @@ msgstr "Υποστήριξη"
msgid "Swedish"
msgstr "Σουηδικά"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Αλλαγή σε οργανωτικό"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6908,16 +6788,6 @@ msgstr "Αυτή η τιμή θα αποθηκευτεί στη βάση δεδ
msgid "This week"
msgstr "Αυτή την εβδομάδα"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6978,7 +6848,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Παρακολουθήστε την κατανάλωση πιστώσεων της ροής εργασίας σας κατά το {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Δοκιμή"
@@ -7106,8 +6976,8 @@ msgid "Unknown error"
msgstr "Άγνωστο σφάλμα"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Απεριόριστες επαφές"
@@ -7147,12 +7017,6 @@ msgstr "Ενημέρωση πληροφοριών πράκτορα"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Ενημερώστε τη ρύθμιση του λογαριασμού σας. Ρυθμίστε οποιονδήποτε συνδυασμό IMAP, SMTP και CalDAV ανάλογα με τις ανάγκες σας."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7314,7 +7178,7 @@ msgid "View"
msgstr "Προβολή"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Προβολή λεπτομερειών χρέωσης"
@@ -7550,12 +7414,12 @@ msgstr "Γράψτε μια περιγραφή για αυτόν τον πράκ
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "έτος"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "ετήσια"
@@ -7603,30 +7467,20 @@ msgid ""
"If you need to make changes, please create a new connection or unsync the tables first."
msgstr "Δεν μπορείτε να επεξεργαστείτε αυτή τη σύνδεση γιατί έχει καταγεγραμμένους πίνακες. Αν χρειαστεί να κάνετε αλλαγές, δημιουργήστε μια νέα σύνδεση ή αποσυνδέστε πρώτα τους πίνακες."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Θα χρεωθείτε ${enterprisePrice} ανά χρήστη ανά μήνα, χρέωση ετησίως."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Θα χρεωθείτε ${enterprisePrice} ανά χρήστη ανά μήνα."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Θα χρεωθείτε ${yearlyPrice} ανά χρήστη ανά μήνα, χρέωση ετησίως. Θα εφαρμοστεί προσαρμογή με την τρέχουσα συνδρομή σας."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Το όνομά σας όπως θα εμφανίζεται"
msgid "Your name as it will be displayed on the app"
msgstr "Το όνομά σας όπως θα εμφανίζεται στην εφαρμογή"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Ο χώρος εργασίας σας δεν διαθέτει ενεργή συνδρομή. Παρακαλώ επικοινωνήστε με τον διαχειριστή σας."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Ο χώρος εργασίας σας θα απενεργοποιηθεί"
+76 -232
View File
@@ -13,12 +13,6 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr " billed annually"
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -64,11 +58,6 @@ msgstr ": Past"
msgid ": Today"
msgstr ": Today"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ". The change will be applied the {beautifiedRenewDate}."
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -119,6 +108,11 @@ msgstr "{failedCount} file(s) failed to upload"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -163,7 +157,7 @@ msgid "1. Type"
msgstr "1. Type"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10,000 workflow node executions"
@@ -194,7 +188,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Set {objectLabelPlural} permissions"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20,000 workflow node executions"
@@ -761,8 +755,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1079,7 +1073,7 @@ msgid "Blocklist"
msgstr "Blocklist"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Book a Call"
@@ -1207,43 +1201,13 @@ msgstr "Can't scan? Copy the"
msgid "Cancel"
msgstr "Cancel"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr "Cancel interval switching"
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr "Cancel interval switching?"
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr "Cancel metered tier switching"
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr "Cancel metered tier switching?"
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Cancel Plan"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr "Cancel plan switching"
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr "Cancel plan switching?"
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Cancel your subscription"
@@ -1275,7 +1239,7 @@ msgid "Change Password"
msgstr "Change Password"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Change Plan"
@@ -1284,21 +1248,11 @@ msgstr "Change Plan"
msgid "Change subdomain?"
msgstr "Change subdomain?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr "Change to Monthly?"
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Change to Organization Plan?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr "Change to Pro Plan?"
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1339,6 +1293,11 @@ msgstr "Chinese — Traditional"
msgid "Choose a Workspace"
msgstr "Choose a Workspace"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr "Choose additional formatting preferences"
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1365,7 +1324,7 @@ msgid "Choose the format used to display date value"
msgstr "Choose the format used to display date value"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Choose your Trial"
@@ -1516,10 +1475,10 @@ msgstr "Configure and customize your calendar preferences."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configure CalDAV settings to sync your calendar events."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr "Configure date, time, number, timezone, and calendar start day"
msgid "Configure how dates are displayed across the app"
msgstr "Configure how dates are displayed across the app"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1558,34 +1517,14 @@ msgstr "Configure your emails and calendar settings."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Confirm"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr "Confirm changing your current credit plan."
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr "Confirm downgrade"
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr "Confirm upgrade"
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1647,7 +1586,7 @@ msgstr "Context"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1934,11 +1873,6 @@ msgstr "Credit Plan"
msgid "Credit Usage"
msgstr "Credit Usage"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr "Credits by period"
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1949,11 +1883,6 @@ msgstr "Credits Used"
msgid "currencies"
msgstr "currencies"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr "Current"
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1981,8 +1910,8 @@ msgid "Custom domain updated"
msgstr "Custom domain updated"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Custom objects"
@@ -2091,6 +2020,11 @@ msgstr "Database configuration is currently disabled."
msgid "Date"
msgstr "Date"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Date and time"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2512,12 +2446,6 @@ msgstr "Dont sync emails from team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Dots and comma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr "Downgrade"
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2623,7 +2551,7 @@ msgid "Edit iFrame"
msgstr "Edit iFrame"
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Edit payment method, see your invoices and more"
@@ -2674,8 +2602,8 @@ msgid "Email copied to clipboard"
msgstr "Email copied to clipboard"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Email integration"
@@ -2791,7 +2719,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Enhances security by requiring a code along with your password"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
@@ -2911,35 +2839,20 @@ msgstr "Error updating role"
msgid "Error validating approved access domain"
msgstr "Error validating approved access domain"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr "Error while cancelling interval switching."
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr "Error while cancelling metered tier switching."
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr "Error while cancelling plan switching."
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Error while ending trial period. Please contact Twenty team."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr "Error while switching subscription to {oppositPlan} Plan."
msgid "Error while switching subscription to Organization Plan."
msgstr "Error while switching subscription to Organization Plan."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr "Error while switching subscription."
msgid "Error while switching subscription to Yearly."
msgstr "Error while switching subscription to Yearly."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3339,11 +3252,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format e.g. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr "Formats"
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3355,8 +3263,8 @@ msgid "French"
msgstr "French"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Full access"
@@ -3394,7 +3302,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Get the most out of your workspace by inviting your team."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Get your subscription"
@@ -3793,11 +3701,6 @@ msgstr "Integrations - Settings"
msgid "Interact with your workspace data"
msgstr "Interact with your workspace data"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr "Interval switching has been cancelled."
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4211,7 +4114,7 @@ msgid "Loading..."
msgstr "Loading..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4253,7 +4156,7 @@ msgid "Manage API keys and webhooks"
msgstr "Manage API keys and webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Manage billing information"
@@ -4383,11 +4286,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Metadata file generation failed"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr "Metered tier switching has been cancelled."
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4415,7 +4313,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitor the execution of your emails sync job"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "month"
@@ -4427,7 +4325,7 @@ msgid "Month"
msgstr "Month"
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "monthly"
@@ -4656,7 +4554,6 @@ msgid "New SSO provider"
msgstr "New SSO provider"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Next"
@@ -5122,8 +5019,7 @@ msgid "Or"
msgstr "Or"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organization"
@@ -5136,6 +5032,11 @@ msgstr "Organization"
msgid "Other"
msgstr "Other"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr "Other formats"
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5277,11 +5178,6 @@ msgstr "Picture"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr "Plan switching has been cancelled."
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5381,8 +5277,7 @@ msgid "Privacy Policy"
msgstr "Privacy Policy"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6426,7 +6321,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6535,21 +6430,16 @@ msgstr "Subscription"
msgid "Subscription activated."
msgstr "Subscription activated."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr "Subscription has been switched to {oppositPlan} Plan."
msgid "Subscription has been switched to Organization Plan."
msgstr "Subscription has been switched to Organization Plan."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Subscription has been switched to Yearly."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr "Subscription will be switch to Monthly the {beautifiedRenewDate}."
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6581,21 +6471,11 @@ msgstr "Support"
msgid "Swedish"
msgstr "Swedish"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr "Switch to Monthly"
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Switch to Organization"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr "Switch to Pro"
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6901,16 +6781,6 @@ msgstr "This value will be saved to the database."
msgid "This week"
msgstr "This week"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6971,7 +6841,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Track your {intervalLabel} workflow credit consumption."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Trial"
@@ -7099,8 +6969,8 @@ msgid "Unknown error"
msgstr "Unknown error"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Unlimited contacts"
@@ -7140,12 +7010,6 @@ msgstr "Update agent information"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr "Upgrade"
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7307,7 +7171,7 @@ msgid "View"
msgstr "View"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "View billing details"
@@ -7543,12 +7407,12 @@ msgstr "Write a description for this agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "year"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "yearly"
@@ -7598,30 +7462,20 @@ msgstr ""
"You cannot edit this connection because it has tracked tables.\n"
"If you need to make changes, please create a new connection or unsync the tables first."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr "You have scheduled a metered tier change. Do you want to cancel it?"
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "You will be charged ${enterprisePrice} per user per month billed annually."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr "you will be charged ${enterprisePrice} per user per month"
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "You will be charged ${enterprisePrice} per user per month."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr "You will be charged ${proPrice} per user per month"
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7658,16 +7512,6 @@ msgstr "Your name as it will be displayed"
msgid "Your name as it will be displayed on the app"
msgstr "Your name as it will be displayed on the app"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr "Your trial period will end, and "
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7684,6 +7528,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Your workspace doesn't have an active subscription. Please contact your admin."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Your workspace will be disabled"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Pasado"
msgid ": Today"
msgstr "Hoy"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "Archivo(s) {failedCount} no se pudo/pudieron subir"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} de {formattedRecordsToImportCount} registros importados."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 ejecuciones de nodos de workflow"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Establecer permisos para {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 ejecuciones de nodos de workflow"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API y Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Lista de bloqueo"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Reservar una llamada"
@@ -1212,43 +1206,13 @@ msgstr "¿No puedes escanear? Copia el"
msgid "Cancel"
msgstr "Cancelar"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Cancelar plan"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Cancelar su suscripción"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Cambiar contraseña"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Cambiar plan"
@@ -1289,21 +1253,11 @@ msgstr "Cambiar plan"
msgid "Change subdomain?"
msgstr "¿Cambiar subdominio?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "¿Cambiar al plan de organización?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chino tradicional"
msgid "Choose a Workspace"
msgstr "Elige un Espacio de Trabajo"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Elige el formato utilizado para mostrar el valor de la fecha"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Elija su prueba"
@@ -1521,10 +1480,10 @@ msgstr "Configura y personaliza tus preferencias de calendario."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configura los ajustes de CalDAV para sincronizar tus eventos de calendario."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Configurar cómo se muestran las fechas en la aplicación"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configura tus correos electrónicos y calendario."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Confirmar"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "¿Confirmar eliminación del rol {roleName}? Esto no se puede deshacer. Todos los miembros serán reasignados al rol predeterminado."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Contexto"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Plan de Crédito"
msgid "Credit Usage"
msgstr "Uso de Crédito"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Créditos Usados"
msgid "currencies"
msgstr "monedas"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Dominio personalizado actualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -2096,6 +2025,11 @@ msgstr "La configuración de la base de datos está actualmente desactivada."
msgid "Date"
msgstr "Fecha"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Fecha y hora"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "No sincronizar correos electrónicos de team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editar la forma de pago, ver sus facturas y más"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Correo electrónico copiado al portapapeles"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integración de correo electrónico"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Mejora la seguridad al requerir un código junto con tu contraseña"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Disfrute de {withCreditCardTrialPeriodDuration} días de prueba gratis"
@@ -2916,35 +2844,20 @@ msgstr "Error al actualizar el rol"
msgid "Error validating approved access domain"
msgstr "Error al validar el dominio de acceso aprobado"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Error al finalizar el período de prueba. Por favor, póngase en contacto con el equipo de Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Error al cambiar la suscripción al plan de organización."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Error al cambiar la suscripción a anual."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formato"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formato, por ejemplo, d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francés"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acceso total"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Aproveche al máximo su espacio de trabajo invitando a su equipo."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Obtenga su suscripción"
@@ -3798,11 +3706,6 @@ msgstr "Integraciones - Ajustes"
msgid "Interact with your workspace data"
msgstr "Interactúe con los datos de su espacio de trabajo"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Cargando..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Administrar claves API y webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Administrar la información de facturación"
@@ -4388,11 +4291,6 @@ msgstr "Metadatos"
msgid "Metadata file generation failed"
msgstr "Fallo en la generación del archivo de metadatos"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitorea la ejecución de tu trabajo de sincronización de correos electrónicos"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "mes"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "mensual"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nuevo proveedor SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Siguiente"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "O"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organización"
@@ -5141,6 +5037,11 @@ msgstr "Organización"
msgid "Other"
msgstr "Otros"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Foto"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Política de privacidad"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Suscripción"
msgid "Subscription activated."
msgstr "Suscripción activada."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "La suscripción ha sido cambiada al plan de organización."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "La suscripción ha sido cambiada a anual."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Soporte"
msgid "Swedish"
msgstr "Sueco"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Cambiar a organización"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Este valor se guardará en la base de datos."
msgid "This week"
msgstr "Esta semana"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Rastrea tu consumo de créditos de flujo de trabajo {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Prueba"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Error desconocido"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contactos ilimitados"
@@ -7145,12 +7015,6 @@ msgstr "Actualizar información del agente"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Actualiza la configuración de tu cuenta. Configura cualquier combinación de IMAP, SMTP y CalDAV según sea necesario."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Vista"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Ver detalles de facturación"
@@ -7548,12 +7412,12 @@ msgstr "Escribe una descripción para este agente"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "año"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "anual"
@@ -7603,30 +7467,20 @@ msgstr ""
"No puede editar esta conexión porque tiene tablas rastreadas.\n"
"Si necesita hacer cambios, por favor cree una nueva conexión o desincronice las tablas primero."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Se le cobrará ${enterprisePrice} por usuario al mes facturado anualmente."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Se le cobrará ${enterprisePrice} por usuario al mes."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Se le cobrará ${yearlyPrice} por usuario al mes facturado anualmente. Se aplicará un prorrateo con su suscripción actual."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Tu nombre tal y como se mostrará"
msgid "Your name as it will be displayed on the app"
msgstr "Tu nombre tal y como será mostrado en la aplicación"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Su espacio de trabajo no tiene una suscripción activa. Por favor, contacte a su administrador."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Tu espacio de trabajo se desactivará"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Menneisyys"
msgid ": Today"
msgstr ": Tänään"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} tiedosto(a) ei voitu ladata"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} {formattedRecordsToImportCount} tietueesta tuotu."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Kirjoita"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 työnkulun solmun suoritusta"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Aseta {objectLabelPlural} käyttöoikeudet"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 työnkulun solmun suoritusta"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "Rajapinta"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Estoluettelo"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Varaa puheluaika"
@@ -1212,43 +1206,13 @@ msgstr "Et voi skannata? Kopioi"
msgid "Cancel"
msgstr "Peruuta"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Peruuta suunnitelma"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Peruuta tilauksesi"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Vaihda salasana"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Muuta suunnitelmaa"
@@ -1289,21 +1253,11 @@ msgstr "Muuta suunnitelmaa"
msgid "Change subdomain?"
msgstr "Vaihda aliavain?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Vaihda organisaatiotiliin?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Kiina — Perinteinen"
msgid "Choose a Workspace"
msgstr "Valitse työtila"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Valitse päivämäärän näyttämiseen käytetty muoto"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Valitse kokeilusi"
@@ -1521,10 +1480,10 @@ msgstr "Määritä ja muokkaa kalenteriasetuksiasi."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Määritä CalDAV-asetukset synkronoidaksesi kalenteritapahtumasi."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Määritä, miten päivämäärät näytetään sovelluksessa"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Määritä sähköpostisi ja kalenterin asetukset."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Vahvista"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Vahvista {roleName}-roolin poisto? Tätä toimintoa ei voi peruuttaa. Kaikki jäsenet siirretään oletusrooliin."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Yhteys"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Krediittisuunnitelma"
msgid "Credit Usage"
msgstr "Krediittien käyttäminen"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Käytetyt krediitit"
msgid "currencies"
msgstr "valuutat"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Mukautettu verkkotunnus päivitetty"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Mukautetut objektit"
@@ -2096,6 +2025,11 @@ msgstr "Tietokannan määritys on tällä hetkellä poistettu käytöstä."
msgid "Date"
msgstr "Päivämäärä"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Päivämäärä ja kellonaika"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Älä synkronoi sähköposteja osoitteista team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Muokkaa maksutapaa, n\\u00e4e laskusi ja paljon muuta"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Sähköposti kopioitu leikepöydälle"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "S\\u00e4hk\\u00f6posti-integraatio"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Parantaa turvallisuutta vaatimalla koodin salasanasi lisäksi"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Nauti {withCreditCardTrialPeriodDuration}-p\\u00e4iv\\u00e4isen ilmaisen kokeilun"
@@ -2916,35 +2844,20 @@ msgstr "Virhe roolia päivitettäessä"
msgid "Error validating approved access domain"
msgstr "Virhe hyväksytyn pääsyoikeuden vahvistuksessa"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Virhe kokeilujakson päättämisessä. Ota yhteyttä Twenty -tiimiin."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Virhe tilauksen vaihdossa organisaatiotilaukseen."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Virhe tilauksen vaihdossa vuosittaiseksi."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Muoto"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Muoto esim. p-kkk-v (qqq''vv)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Ranska"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Täysi pääsy"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Saa kaiken irti työtilastasi kutsuen tiimisi mukaan."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Hanki tilaus"
@@ -3798,11 +3706,6 @@ msgstr "Integraatiot - Asetukset"
msgid "Interact with your workspace data"
msgstr "Vuorovaikuta työtilasi tietojen kanssa"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Ladataan..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Hallinnoi API-avaimia ja webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Hallinnoi laskutustietoja"
@@ -4388,11 +4291,6 @@ msgstr "Metatiedot"
msgid "Metadata file generation failed"
msgstr "Metatiedostotiedoston luonti epäonnistui"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Valvo sähköpostien synkronointitehtävän suorittamista"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "kuukausi"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "kuukausittain"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Uusi SSO-tarjoaja"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Seuraava"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Tai"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisaatio"
@@ -5141,6 +5037,11 @@ msgstr "Organisaatio"
msgid "Other"
msgstr "Muu"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Kuva"
msgid "Plan"
msgstr "Suunnitelma"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Tietosuojakäytäntö"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Kertakirjautuminen"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Tilaus"
msgid "Subscription activated."
msgstr "Tilaus aktivoitu."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Tilaus on vaihdettu organisaatiotilaukseksi."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Tilaus on vaihdettu vuosittaiseksi."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Tuki"
msgid "Swedish"
msgstr "Ruotsi"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Vaihda organisaatioon"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Tämä arvo tallennetaan tietokantaan."
msgid "This week"
msgstr "Tämä viikko"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Seuraa {intervalLabel} työprosessien krediittien kulutustasi."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Koe"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Tuntematon virhe"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Rajattomat yhteystiedot"
@@ -7145,12 +7015,6 @@ msgstr "Päivitä agentin tiedot"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Päivitä tilisi kokoonpano. Määritä tarvittaessa mikä tahansa yhdistelmä IMAP-, SMTP- ja CalDAV-asetuksista."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Näkymä"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Näytä laskutustiedot"
@@ -7548,12 +7412,12 @@ msgstr "Kirjoita kuvaus tälle agentille"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "vuosi"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "vuosittain"
@@ -7603,30 +7467,20 @@ msgstr ""
"Et voi muokata tätä yhteyttä, koska siinä on seurattuja tauluja.\n"
"Jos tarvitset muutoksia, luo uusi yhteys tai katkaise taulujen synkronointi ensin."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Sinulta veloitetaan vuosittain ${enterprisePrice} per käyttäjä kuukaudessa."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Sinulta veloitetaan ${enterprisePrice} per käyttäjä kuukaudessa."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Sinulta veloitetaan vuosittain ${yearlyPrice} per käyttäjä kuukaudessa. Nykyiseen tilaukseesi sovelletaan tasausta."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Nimesi, niin kuin se näytetään"
msgid "Your name as it will be displayed on the app"
msgstr "Nimesi, niin kuin se näytetään sovelluksessa"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Työtilallasi ei ole aktiivista tilausta. Ota yhteyttä järjestelmänvalvojaasi."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Työtilasi poistetaan käytöstä"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Passé"
msgid ": Today"
msgstr ": Aujourd'hui"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} fichier a échoué lors du téléchargement"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} enregistrements sur {formattedRecordsToImportCount} importés."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Type"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 exécutions de nœuds de workflow"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Définissez les permissions de {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 exécutions de nœuds de workflow"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Liste de blocage"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Réserver un appel"
@@ -1212,43 +1206,13 @@ msgstr "Impossible de scanner ? Copiez le"
msgid "Cancel"
msgstr "Annuler"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Annuler le plan"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Annuler votre abonnement"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Changer le mot de passe"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Changer de plan"
@@ -1289,21 +1253,11 @@ msgstr "Changer de plan"
msgid "Change subdomain?"
msgstr "Changer de sous-domaine ?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Passer au Plan d'Organisation?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chinois - Traditionnel"
msgid "Choose a Workspace"
msgstr "Choisissez un espace de travail"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Choisir le format utilisé pour afficher la valeur de la date"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Choisissez votre essai"
@@ -1521,10 +1480,10 @@ msgstr "Configurer et personnaliser vos préférences de calendrier."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configurez les paramètres de CalDAV pour synchroniser vos événements de calendrier."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Configurer l'affichage des dates dans l'application"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configurer vos paramètres de courriel et de calendrier."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Confirmer"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirmer la suppression du rôle {roleName} ? Cela ne peut pas être annulé. Tous les membres seront réassignés au rôle par défaut."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Contexte"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Plan de crédit"
msgid "Credit Usage"
msgstr "Utilisation des crédits"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Crédits utilisés"
msgid "currencies"
msgstr "devises"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Domaine personnalisé mis à jour"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objets personnalisés"
@@ -2096,6 +2025,11 @@ msgstr "La configuration de la base de données est actuellement désactivée."
msgid "Date"
msgstr "Date"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Date et heure"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Ne pas synchroniser les emails de team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Modifier le mode de paiement, consulter vos factures et plus encore"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email copié dans le presse-papiers"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Intégration du courriel"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Améliore la sécurité en exigeant un code en plus de votre mot de passe"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Profitez d'un essai gratuit de {withCreditCardTrialPeriodDuration} jours"
@@ -2916,35 +2844,20 @@ msgstr "Erreur lors de la mise à jour du rôle"
msgid "Error validating approved access domain"
msgstr "Erreur lors de la validation du domaine d'accès approuvé"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Erreur lors de la fin de la période d'essai. Veuillez contacter l'équipe Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Erreur lors du passage à l'abonnement du Plan d'Organisation."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Erreur lors du changement d'abonnement à l'annuel."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format par ex. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Français"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Accès complet"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Tirez le meilleur parti de votre espace de travail en invitant votre équipe."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Obtenez votre abonnement"
@@ -3798,11 +3706,6 @@ msgstr "Intégrations - Paramètres"
msgid "Interact with your workspace data"
msgstr "Interagissez avec les données de votre espace de travail"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Chargement..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Gérer les clés API et les webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Gérer les informations de facturation"
@@ -4388,11 +4291,6 @@ msgstr "Métadonnées"
msgid "Metadata file generation failed"
msgstr "Échec de la génération du fichier des métadonnées"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Surveillez l'exécution de votre travail de synchronisation des emails"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "mois"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "mensuel"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nouveau fournisseur SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Suivant"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Ou"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisation"
@@ -5141,6 +5037,11 @@ msgstr "Organisation"
msgid "Other"
msgstr "Autres"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Photo"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Politique de confidentialité"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abonnement"
msgid "Subscription activated."
msgstr "Péripéqdha."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "L'abonnement a été changé en Plan d'Organisation."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "L'abonnement a été changé en annuel."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Support"
msgid "Swedish"
msgstr "Suédois"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Passer à l'Organisation"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Cette valeur sera enregistrée dans la base de données."
msgid "This week"
msgstr "Cette semaine"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Suivez la consommation de crédits de flux de travail {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Essai"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Erreur inconnue"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contacts illimités"
@@ -7145,12 +7015,6 @@ msgstr "Mettre à jour les informations de l'agent"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Mettez à jour la configuration de votre compte. Configurez une combinaison de IMAP, SMTP et CalDAV selon vos besoins."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Vue"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Voir les détails de facturation"
@@ -7548,12 +7412,12 @@ msgstr "Rédigez une description pour cet agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "année"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "annuel"
@@ -7601,30 +7465,20 @@ msgid ""
"If you need to make changes, please create a new connection or unsync the tables first."
msgstr "Vous ne pouvez pas modifier cette connexion car elle a des tables suivies. Si vous devez apporter des modifications, veuillez créer une nouvelle connexion ou désynchroniser d'abord les tables."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Vous serez facturé ${enterprisePrice} par utilisateur par mois facturé annuellement."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Vous serez facturé ${enterprisePrice} par utilisateur par mois."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Vous serez facturé ${yearlyPrice} par utilisateur par mois facturé annuellement. Un prorata sera appliqué avec votre abonnement actuel."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7661,16 +7515,6 @@ msgstr "Votre nom tel qu'il sera affiché"
msgid "Your name as it will be displayed on the app"
msgstr "Votre nom tel qu'il sera affiché sur l'application"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7687,6 +7531,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Votre espace de travail n'a pas d'abonnement actif. Veuillez contacter votre administrateur."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Votre espace de travail sera désactivé"
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
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": עבר"
msgid ": Today"
msgstr ": היום"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} קובץ(ים) לא הצליחו להיטען"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr ""
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. סוג"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10,000 הפעלות של צמתים בתהליכי עבודה"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. הגדר הרשאות עבור {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20,000 הפעלות של צמתים בתהליכי עבודה"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API ו-Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "רשימת חסומים"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "תזמן שיחה"
@@ -1212,43 +1206,13 @@ msgstr "לא ניתן לסרוק? העתק את"
msgid "Cancel"
msgstr "בטל"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "בטל תוכנית"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "בטל את המינוי שלך"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "שנה סיסמה"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "שנה תוכנית"
@@ -1289,21 +1253,11 @@ msgstr "שנה תוכנית"
msgid "Change subdomain?"
msgstr "לשנות תת-דומיין?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "שינוי לתוכנית ארגונית?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "סינית — מסורתית"
msgid "Choose a Workspace"
msgstr "בחר מרחב עבודה"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "בחר את הפורמט להצגת תאריך"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "בחר את ניסיונך"
@@ -1521,10 +1480,10 @@ msgstr "הגדר והתאם אישית את העדפות לוח השנה שלך.
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "הגדר את הגדרות CalDAV לסנכרון אירועי לוח השנה שלך."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "הגדר כיצד מוצגים תאריכים ברחבי האפליקציה"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "הגדר את ההגדרות של האימיילים ולוח השנה
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "אישור"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "אישור מחיקת תפקיד {roleName}? לא ניתן לבטל זאת. כל החברים יוקצו לתפקיד ברירת המחדל."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "הקשר"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "תוכנית אשראי"
msgid "Credit Usage"
msgstr "שימוש באשראי"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "נקודות חינם בשימוש"
msgid "currencies"
msgstr ""
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "הדומיין המותאם עודכן"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "עצמים מותאמים אישית"
@@ -2096,6 +2025,11 @@ msgstr "הגדרת בסיס הנתונים מושבתת כרגע."
msgid "Date"
msgstr "תאריך"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "תאריך ושעה"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "אל תסנכרן אימיילים מ-team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "ערוך שיטת תשלום, צפה בחשבוניות שלך ועוד"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "האימייל הועתק ללוח הגזירים"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "אינטגרציית דוא\"ל"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "משפר את האבטחה על ידי דרישה לקוד יחד עם הסיסמה שלך"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "תהנה מתקופת ניסיון חינם של {withCreditCardTrialPeriodDuration} ימים"
@@ -2916,35 +2844,20 @@ msgstr "שגיאה בעדכון התפקיד"
msgid "Error validating approved access domain"
msgstr "שגיאה באימות הדומיין המאושר גישה"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "שגיאה בעת סיום תקופת הניסיון. אנא פנה לצוות Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "שגיאה בעת החלפת המנוי לתוכנית ארגונית."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "שגיאה בעת החלפת המנוי לשנתי."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "פורמט"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "פורמט לדוגמה: d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "צרפתית"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "גישה מלאה"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "נצלו את המרחב שלכם על ידי הזמנת הצוות שלכם."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "השיגו את המנוי שלכם"
@@ -3798,11 +3706,6 @@ msgstr "אינטגרציות - הגדרות"
msgid "Interact with your workspace data"
msgstr "אינטראקציה עם נתוני סביבת העבודה שלך"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "טוען..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "ניהול מפתחות API ו-Webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "נהל מידע לתשלום"
@@ -4388,11 +4291,6 @@ msgstr "מטא-נתונים"
msgid "Metadata file generation failed"
msgstr "יצירת קובץ מטא נתונים נכשלה"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "ניטור ביצוע סנכרון הדואר האלקטרוני שלך"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "חודש"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "חודשי"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "ספק SSO חדש"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "הבא"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "או"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "ארגון"
@@ -5141,6 +5037,11 @@ msgstr "ארגון"
msgid "Other"
msgstr "אחר"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "תמונה"
msgid "Plan"
msgstr "תוכנית"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "מדיניות הפרטיות"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "מקצועי"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "\\"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "מנוי"
msgid "Subscription activated."
msgstr "המנוי הופעל."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "המינוי הועבר לתוכנית ארגונית."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "המינוי הועבר לשנתי."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "\\"
msgid "Swedish"
msgstr "שוודית"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "העבר לארגון"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "ערך זה יישמר בבסיס הנתונים."
msgid "This week"
msgstr "השבוע"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "עקוב אחר צריכת נקודות העבודה שלך ב{intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "ניסיון"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "שגיאה לא ידועה"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "אין מגבלה על מספר אנשי הקשר"
@@ -7145,12 +7015,6 @@ msgstr "עדכן מידע על הסוכן"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "עדכן את תצורת החשבון שלך. קבע תצורה של כל קומבינציה של IMAP, SMTP ו-CalDAV לפי הצורך."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "תצוגה"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "צפייה בפרטי החשבונית"
@@ -7548,12 +7412,12 @@ msgstr "כתוב תיאור עבור סוכן זה"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "שנה"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "שנתי"
@@ -7603,30 +7467,20 @@ msgstr ""
"אינך יכול לערוך את החיבור הזה מכיוון שיש בו טבלאות במעקב.\n"
"אם ברצונך לבצע שינויים, צור חיבור חדש או בטל את הסינכרון של הטבלאות תחילה."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "תחויב ${enterprisePrice} למשתמש לחודש, מחויב שנתי."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "תחויב ${enterprisePrice} למשתמש לחודש."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "תחויב ${yearlyPrice} למשתמש לחודש, מחויב שנתי. יחס שווה ערך על פי המנוי הנוכחי שלך ייושם."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "השם שלך כפי שיהיה מוצג"
msgid "Your name as it will be displayed on the app"
msgstr "השם שלך כפי שיהיה מוצג באפליקציה"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "למקום העבודה שלך אין מנוי פעיל. אנא פנו למנהל שלכם."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "המרחב האישי שלך יהפוך ללא פעיל"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Múlt"
msgid ": Today"
msgstr ": Ma"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} fájl feltöltése nem sikerült"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} a(z) {formattedRecordsToImportCount} rekordból importálva."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Típus"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 munkafolyamat csomópont végrehajtás"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Állítsa be a(z) {objectLabelPlural} jogosultságokat"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 munkafolyamat csomópont végrehajtás"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Feketelista"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Hívás foglalása"
@@ -1212,43 +1206,13 @@ msgstr "Nem tud beolvasni? Másolja a"
msgid "Cancel"
msgstr "Mégse"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Terv lemondása"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Előfizetése lemondása"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Jelszó megváltoztatása"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Terv módosítása"
@@ -1289,21 +1253,11 @@ msgstr "Terv módosítása"
msgid "Change subdomain?"
msgstr "Megváltoztatja az aldomaint?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Váltás szervezeti csomagra?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Kínai — Hagyományos"
msgid "Choose a Workspace"
msgstr "Válasszon egy munkaterületet"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Válassza ki a dátumérték megjelenítésére használt formátumot"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Válassza ki a próbaidőt"
@@ -1521,10 +1480,10 @@ msgstr "Állítsa be és szabja személyre a naptári beállításokat."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "A CalDAV beállítások konfigurálása a naptáresemények szinkronizálásához."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Állítsa be, hogy az alkalmazásban hogyan jelenjenek meg a dátumok"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Állítsa be az e-mail és naptár beállításokat."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Megerősítés"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Megerősíti a(z) {roleName} szerepkör törlését? Ez nem vonható vissza. Minden tagot átmenetileg az alapértelmezett szerepkörbe helyez."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Összefüggés"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kredit Terv"
msgid "Credit Usage"
msgstr "Kredit Felhasználás"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Felhasznált Kreditek"
msgid "currencies"
msgstr "valuták"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Egyéni domain frissítve"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Egyéni objektumok"
@@ -2096,6 +2025,11 @@ msgstr "Az adatbázis-konfiguráció jelenleg le van tiltva."
msgid "Date"
msgstr "Dátum"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Dátum és idő"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Ne szinkronizáljon emaileket a következő címekről: team@ support@ n
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Fizet\\u00e9si m\\u00f3d szerkeszt\\u00e9se, sz\\u00e1ml\\u00e1k megtekint\\u00e9se \\u00e9s egy\\u00e9b"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "E-mail vágólapra másolva"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Email integr\\u00e1ci\\u00f3"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Növeli a biztonságot azzal, hogy kódot is megkövetel a jelszó mellett."
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "\\u00c9lvezd a {withCreditCardTrialPeriodDuration}-napos ingyenes pr\\u00f3baid\\u0151szakot"
@@ -2916,35 +2844,20 @@ msgstr "Hiba a szerep frissítésekor"
msgid "Error validating approved access domain"
msgstr "Hiba a jóváhagyott hozzáférési tartomány megerősítésénél"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Hiba a próbaidőszak befejezésekor. Kérjük, vegye fel a kapcsolatot a Twenty csapatával."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Hiba a szervezeti csomagra való előfizetésre való váltás során."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Hiba az éves előfizetésre való váltás során."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formátum"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formátum pl. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francia"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Teljes hozzáférés"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Maximalizálja munkaterületét csapatának meghívásával."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Szerezze meg előfizetését"
@@ -3798,11 +3706,6 @@ msgstr "Integrációk - Beállítások"
msgid "Interact with your workspace data"
msgstr "Lépjen kapcsolatba a munkaterület adatával"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Betöltés..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "API kulcsok és webhookok kezelése"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Számlázási információk kezelése"
@@ -4388,11 +4291,6 @@ msgstr "Metaadatok"
msgid "Metadata file generation failed"
msgstr "Metadat fájl generálása sikertelen"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Figyeld az e-mail szinkronizálási feladatának végrehajtását"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "hónap"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "havi"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Új SSO szolgáltató"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Következő"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Vagy"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Szervezet"
@@ -5141,6 +5037,11 @@ msgstr "Szervezet"
msgid "Other"
msgstr "Egyéb"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Kép"
msgid "Plan"
msgstr "Csomag"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Adatvédelmi irányelvek"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Előfizetés"
msgid "Subscription activated."
msgstr "Az előfizetés aktiválva."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Az előfizetés átváltva szervezeti csomagra."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Az előfizetés átváltva évesre."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Támogatás"
msgid "Swedish"
msgstr "Svéd"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Váltás szervezetre"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Ez az érték elmentésre kerül az adatbázisba."
msgid "This week"
msgstr "Ezen a héten"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Kövesse nyomon a(z) {intervalLabel} munkafolyamat kredit felhasználását."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Próbaidőszak"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Ismeretlen hiba"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Korlátlan névjegyek"
@@ -7145,12 +7015,6 @@ msgstr "Ügynök információinak frissítése"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Frissítse fiókja konfigurációját. IMAP, SMTP és CalDAV tetszőleges kombinációját állíthatja be az igények szerint."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Nézet"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Számlázási részletek megtekintése"
@@ -7548,12 +7412,12 @@ msgstr "Írjon leírást az ügynökhöz"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "év"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "éves"
@@ -7603,30 +7467,20 @@ msgstr ""
"Nem szerkesztheted ezt a kapcsolatot, mert követett táblák vannak benne.\n"
"Ha módosítani szeretnél rajta, hozz létre egy új kapcsolatot vagy szüntesd meg előbb a táblák szinkronizációját."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "${enterprisePrice} kerül felszámításra felhasználónként havonta, évente számlázva."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "${enterprisePrice} kerül felszámításra felhasználónként havonta."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "${yearlyPrice} kerül felszámításra felhasználónként havonta, évente számlázva. A jelenlegi előfizetés alapján arányosítás kerül alkalmazásra."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "A neve úgy, ahogy látható lesz"
msgid "Your name as it will be displayed on the app"
msgstr "Az Ön neve, ahogy az alkalmazáson megjelenik"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "A munkaterületének nincs aktív előfizetése. Kérjük, forduljon az adminisztrátorához."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "A munkaterületét le lesz tiltva"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Passato"
msgid ": Today"
msgstr ": Oggi"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} file(s) non sono stati caricati"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} su {formattedRecordsToImportCount} record importati."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 esecuzioni di nodi del workflow"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Imposta i permessi di {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 esecuzioni di nodi del workflow"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API e Webhook"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Lista di blocco"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Prenota una chiamata"
@@ -1212,43 +1206,13 @@ msgstr "Non puoi scansionare? Copia il"
msgid "Cancel"
msgstr "Annulla"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Annulla piano"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Annulla l'abbonamento"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Cambia password"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Cambia piano"
@@ -1289,21 +1253,11 @@ msgstr "Cambia piano"
msgid "Change subdomain?"
msgstr "Cambiare sotto-dominio?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Passare al piano Organizzazione?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Cinese tradizionale"
msgid "Choose a Workspace"
msgstr "Scegli uno Spazio di Lavoro"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Scegli il formato utilizzato per visualizzare il valore della data"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Scegli la tua prova"
@@ -1521,10 +1480,10 @@ msgstr "Configura e personalizza le preferenze del calendario."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configura le impostazioni CalDAV per sincronizzare i tuoi eventi del calendario."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Configura la visualizzazione delle date nell'app"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configura le impostazioni di e-mail e calendario."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Conferma"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Conferma l'eliminazione del ruolo {roleName}? Questo non può essere annullato. Tutti i membri verranno riassegnati al ruolo predefinito."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Contesto"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Piano Crediti"
msgid "Credit Usage"
msgstr "Utilizzo dei Crediti"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Crediti Usati"
msgid "currencies"
msgstr "valute"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Dominio personalizzato aggiornato"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Oggetti personalizzati"
@@ -2096,6 +2025,11 @@ msgstr "La configurazione del database è attualmente disabilitata."
msgid "Date"
msgstr "Data"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Data e ora"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Non sincronizzare email da team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Modifica il metodo di pagamento, visualizza le fatture e altro"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email copiata negli appunti"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integrazione e-mail"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Aumenta la sicurezza richiedendo un codice insieme alla tua password"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Goditi una prova gratuita di {withCreditCardTrialPeriodDuration} giorni"
@@ -2916,35 +2844,20 @@ msgstr "Errore nell'aggiornamento del ruolo"
msgid "Error validating approved access domain"
msgstr "Errore durante la convalida del dominio di accesso approvato"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Errore durante la conclusione del periodo di prova. Si prega di contattare il team di Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Errore durante il cambio di abbonamento al piano Organizzazione."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Errore durante il cambio di abbonamento all'annuale."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formato"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formato es. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francese"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Accesso completo"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Sfrutta al massimo il tuo spazio di lavoro invitando il tuo team."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Ottieni il tuo abbonamento"
@@ -3798,11 +3706,6 @@ msgstr "Integrazioni - Impostazioni"
msgid "Interact with your workspace data"
msgstr "Interagisci con i dati del tuo spazio di lavoro"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Caricamento..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Gestire chiavi API e webhook"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Gestisci le informazioni di fatturazione"
@@ -4388,11 +4291,6 @@ msgstr "Metadati"
msgid "Metadata file generation failed"
msgstr "Generazione del file di metadata fallita"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitora l'esecuzione del tuo processo di sincronizzazione delle email"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "mese"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "mensile"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nuovo provider SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Successivo"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Oppure"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organizzazione"
@@ -5141,6 +5037,11 @@ msgstr "Organizzazione"
msgid "Other"
msgstr "Altro"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Immagine"
msgid "Plan"
msgstr "Piano"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Informativa sulla privacy"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abbonamento"
msgid "Subscription activated."
msgstr "Abbonamento attivato."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "L'abbonamento è stato cambiato al piano Organizzazione."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "L'abbonamento è stato cambiato all'annuale."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Supporto"
msgid "Swedish"
msgstr "Svedese"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Passa a Organizzazione"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Questo valore verrà salvato nel database."
msgid "This week"
msgstr "Questa settimana"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Monitora il consumo dei crediti del flusso di lavoro {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Prova"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Errore sconosciuto"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contatti illimitati"
@@ -7145,12 +7015,6 @@ msgstr "Aggiorna le informazioni sull'agente"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Aggiorna la configurazione del tuo account. Configura qualsiasi combinazione di IMAP, SMTP e CalDAV secondo necessità."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Vista"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Visualizza dettagli fatturazione"
@@ -7548,12 +7412,12 @@ msgstr "Scrivi una descrizione per questo agente"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "anno"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "annuale"
@@ -7603,30 +7467,20 @@ msgstr ""
"Non puoi modificare questa connessione perché ha tabelle tracciate.\n"
"Se hai bisogno di apportare modifiche, crea una nuova connessione o desincronizza prima le tabelle."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Ti verrà addebitato ${enterprisePrice} per utente al mese, fatturato annualmente."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Ti verrà addebitato ${enterprisePrice} per utente al mese."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Ti verrà addebitato ${yearlyPrice} per utente al mese, fatturato annualmente. Verrà applicato un pro rata sul tuo attuale abbonamento."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Il tuo nome come verrà visualizzato"
msgid "Your name as it will be displayed on the app"
msgstr "Il tuo nome come sarà visualizzato sull'app"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Il tuo spazio di lavoro non ha un abbonamento attivo. Si prega di contattare l'amministratore."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Il tuo workspace sarà disabilitato"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr "過去"
msgid ": Today"
msgstr ": 今日"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} ファイルのアップロードに失敗しました"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedRecordsToImportCount} 件中 {formattedCreatedRecordsProgress} 件のレコードがインポートされました。"
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. 種類"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10,000 ワークフローノード実行"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. {objectLabelPlural}の権限を設定する"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20,000 ワークフローノード実行"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "ブロックリスト"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "電話予約"
@@ -1212,43 +1206,13 @@ msgstr "スキャンできませんか? コピーしてください"
msgid "Cancel"
msgstr "キャンセル"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "プランをキャンセル"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "サブスクリプションをキャンセル"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "パスワードを変更"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "プランを変更"
@@ -1289,21 +1253,11 @@ msgstr "プランを変更"
msgid "Change subdomain?"
msgstr "サブドメインを変更しますか?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "組織プランに変更しますか?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "中国語(繁体字)"
msgid "Choose a Workspace"
msgstr "ワークスペースを選択"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "日付値を表示するために使用される形式を選択"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "トライアルを選択"
@@ -1521,10 +1480,10 @@ msgstr "カレンダーの設定を行い、カスタマイズする。"
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "カレンダーイベントを同期するためにCalDAV設定を構成します。"
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "アプリ全体の日付の表示方法を設定"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "メールとカレンダーの設定を行う。"
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "確認"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "{roleName}のロールを削除しますか?この操作は元に戻せません。すべてのメンバーはデフォルトのロールに再割り当てされます。"
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "コンテキスト"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "クレジットプラン"
msgid "Credit Usage"
msgstr "クレジット使用量"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "使用済みクレジット"
msgid "currencies"
msgstr "通貨"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "カスタムドメインが更新されました"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "カスタムオブジェクト"
@@ -2096,6 +2025,11 @@ msgstr "データベース設定は現在無効です。"
msgid "Date"
msgstr "日付"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "日付と時間"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "team@、support@、noreply@からのメールを同期しない…"
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "支払い方法の編集、請求書の確認など"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "メールがクリップボードにコピーされました"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "メール統合"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "パスワードに加えてコードを要求することで、セキュリティを強化します"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "{withCreditCardTrialPeriodDuration}日間の無料トライアルをお楽しみください。"
@@ -2916,35 +2844,20 @@ msgstr "ロールの更新にエラーが発生しました"
msgid "Error validating approved access domain"
msgstr "承認されたアクセスドメインの検証エラー"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "試用期間の終了中にエラーが発生しました。Twentyチームにお問い合わせください。"
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "サブスクリプションを組織プランに切り替える際にエラーが発生しました。"
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "サブスクリプションを年間に切り替える際にエラーが発生しました。"
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "フォーマット"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "例: d-MMM-y (qqq''yy) 形式"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "フランス語"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "フルアクセス"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "チームを招待して、ワークスペースを最大限に活用しましょう。"
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "サブスクリプションを取得"
@@ -3798,11 +3706,6 @@ msgstr "統合 - 設定"
msgid "Interact with your workspace data"
msgstr "ワークスペースデータとのインタラクション"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "ロード中…"
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "APIキーとWebhooksを管理する"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "請求情報を管理する"
@@ -4388,11 +4291,6 @@ msgstr "メタデータ"
msgid "Metadata file generation failed"
msgstr "メタデータファイルの生成に失敗しました"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "メール同期ジョブの実行を監視する"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "月"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "月払い"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "新しいSSOプロバイダー"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "次へ"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "または"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "組織"
@@ -5141,6 +5037,11 @@ msgstr "組織"
msgid "Other"
msgstr "その他"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "写真"
msgid "Plan"
msgstr "プラン"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "プライバシーポリシー"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "プロ"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSOSAML / OIDC"
@@ -6540,21 +6435,16 @@ msgstr "サブスクリプション"
msgid "Subscription activated."
msgstr "サブスクリプションが有効になりました。"
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "サブスクリプションが組織プランに切り替わりました。"
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "サブスクリプションが年払いに切り替わりました。"
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "サポート"
msgid "Swedish"
msgstr "スウェーデン語"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "組織へ切り替える"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "この値はデータベースに保存されます。"
msgid "This week"
msgstr "今週"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "{intervalLabel}のワークフロークレジット消費を追跡します。"
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "トライアル"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "不明なエラー"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "連絡先無制限"
@@ -7145,12 +7015,6 @@ msgstr "エージェント情報を更新"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "アカウントの設定を更新します。必要に応じて、IMAP、SMTP、CalDAV の任意の組み合わせを設定します。"
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "ビュー"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "請求の詳細を表示"
@@ -7548,12 +7412,12 @@ msgstr "このエージェントの説明を書く"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "年"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "年払い"
@@ -7603,30 +7467,20 @@ msgstr ""
"この接続は追跡されたテーブルがあるため編集できません。\n"
"変更を加えるには、新しい接続を作成するか、テーブルの同期を外してください。"
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "年間請求で1ユーザーあたり月額${enterprisePrice}が請求されます。"
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "1ユーザーあたり月額${enterprisePrice}が請求されます。"
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "年間請求で1ユーザーあたり月額${yearlyPrice}が請求されます。現在のサブスクリプションとの比例配分が適用されます。"
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "表示名"
msgid "Your name as it will be displayed on the app"
msgstr "アプリ上での表示名"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "お客様のワークスペースにはアクティブなサブスクリプションがありません。管理者に連絡してください。"
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "ワークスペースが無効になります"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": 과거"
msgid ": Today"
msgstr ": 오늘"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount}개의 파일 업로드 실패"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress}개 중 {formattedRecordsToImportCount}개 기록이 가져왔습니다."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}원"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. 유형"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "워크플로 노드 실행 10,000회"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. {objectLabelPlural} 권한 설정"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "워크플로 노드 실행 20,000회"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API 및 웹훅"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "차단 목록"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "통화 예약"
@@ -1212,43 +1206,13 @@ msgstr "스캔이 불가능합니까?"
msgid "Cancel"
msgstr "취소"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "요금제 취소"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "구독 취소"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "비밀번호 변경"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "요금제 변경"
@@ -1289,21 +1253,11 @@ msgstr "요금제 변경"
msgid "Change subdomain?"
msgstr "서브도메인을 변경하시겠습니까?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "조직 플랜으로 변경하시겠습니까?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "중국어 - 번체"
msgid "Choose a Workspace"
msgstr "작업공간을 선택하세요"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "날짜 형식을 선택하세요"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "평가판 선택"
@@ -1521,10 +1480,10 @@ msgstr "캘린더 환경설정을 구성하고 사용자 지정하세요."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "CalDAV 설정을 구성하여 캘린더 이벤트를 동기화하세요."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "앱 전체에 날짜가 표시되는 방식 구성"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "이메일 및 캘린더 설정 구성."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "확인"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "{roleName} 역할 삭제를 확인하시겠습니까? 이 작업은 되돌릴 수 없습니다. 모든 구성원은 기본 역할로 재할당됩니다."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "컨텍스트"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "크레딧 플랜"
msgid "Credit Usage"
msgstr "크레딧 사용량"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "크레딧 사용됨"
msgid "currencies"
msgstr "통화"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "사용자 정의 도메인이 업데이트되었습니다"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "사용자 지정 개체"
@@ -2096,6 +2025,11 @@ msgstr "데이터베이스 설정이 현재 비활성화되어 있습니다."
msgid "Date"
msgstr "날짜"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "날짜 및 시간"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "team@, support@, noreply@... 이메일과 동기화하지 않음..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "결제 방법 편집, 송장 확인 등"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "이메일이 클립보드에 복사되었습니다"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "이메일 통합"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "비밀번호와 함께 코드를 요구하여 보안을 강화합니다."
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "{withCreditCardTrialPeriodDuration}일 무료 체험을 즐기세요"
@@ -2916,35 +2844,20 @@ msgstr "역할을 업데이트하는 중 오류가 발생했습니다."
msgid "Error validating approved access domain"
msgstr "승인된 액세스 도메인 검증 오류"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "시험 기간 종료 중 오류가 발생했습니다. Twenty 팀에 문의하세요."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "구독 전환 중 조직 플랜으로 오류 발생."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "구독 전환 중 연간 요금제로 오류 발생."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "형식"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "형식 예: d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "프랑스어"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "전체 접근"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "팀을 초대하여 워크스페이스를 최대한 활용하세요."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "구독 신청"
@@ -3798,11 +3706,6 @@ msgstr "통합 - 설정"
msgid "Interact with your workspace data"
msgstr "작업 공간 데이터와 상호 작용"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "로딩 중..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "API 키 및 웹훅 관리"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "청구 정보를 관리하세요"
@@ -4388,11 +4291,6 @@ msgstr "메타데이터"
msgid "Metadata file generation failed"
msgstr "메타데이터 파일 생성 실패"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "이메일 동기화 작업 실행 모니터링"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "월"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "월간"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "새 SSO 공급자"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "다음"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "또는"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "조직"
@@ -5141,6 +5037,11 @@ msgstr "조직"
msgid "Other"
msgstr "기타"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "사진"
msgid "Plan"
msgstr "플랜"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "개인정보 보호정책"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "프로"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "구독"
msgid "Subscription activated."
msgstr "구독이 활성화되었습니다."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "구독이 조직 플랜으로 전환되었습니다."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "구독이 연간으로 전환되었습니다."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "지원"
msgid "Swedish"
msgstr "스웨덴어"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "조직으로 전환"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "이 값이 데이터베이스에 저장됩니다."
msgid "This week"
msgstr "이번 주"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "{intervalLabel} 워크플로 크레딧 소모량을 추적하세요."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "시험"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "알 수 없는 오류"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "무제한 연락처"
@@ -7145,12 +7015,6 @@ msgstr "에이전트 정보 업데이트"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "계정 구성을 업데이트하세요. 필요에 따라 IMAP, SMTP, 그리고 CalDAV의 조합을 구성할 수 있습니다."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "보기"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "청구 세부 정보 보기"
@@ -7548,12 +7412,12 @@ msgstr "이 에이전트에 대한 설명을 작성하세요"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "연"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "연간"
@@ -7603,30 +7467,20 @@ msgstr ""
"이 연결은 추적된 테이블이 있어 수정할 수 없습니다.\n"
"변경이 필요하면 새 연결을 생성하거나 먼저 테이블의 동기화를 해제하세요."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "매년 청구될 금액은 사용자당 ${enterprisePrice}입니다."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "사용자당 월 ${enterprisePrice}가 청구됩니다."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "연간 청구될 금액은 사용자당 ${yearlyPrice}이며, 현재 구독 기간에 대해 일할 계산이 적용됩니다."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "표시될 이름"
msgid "Your name as it will be displayed on the app"
msgstr "앱에 디스플레이될 귀하의 이름"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "작업 공간에 활성 구독이 없습니다. 관리자에게 문의하세요."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "워크스페이스가 비활성화됩니다"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Verleden"
msgid ": Today"
msgstr ": Vandaag"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} bestand(en) kon(den) niet worden geüpload"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} van {formattedRecordsToImportCount} records geïmporteerd."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}€"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Type"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "{num, plural, one {10 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Stel {objectLabelPlural} machtigingen in"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "{num, plural, one {20 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Blokkeringslijst"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Boek een gesprek"
@@ -1212,43 +1206,13 @@ msgstr "Kan je niet scannen? Kopieer de"
msgid "Cancel"
msgstr "Annuleren"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Plan annuleren"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Annuleer uw abonnement"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Wachtwoord wijzigen"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Plan wijzigen"
@@ -1289,21 +1253,11 @@ msgstr "Plan wijzigen"
msgid "Change subdomain?"
msgstr "Subdomeinnaam wijzigen?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Overschakelen naar Organisatieplan?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chinees — Traditioneel"
msgid "Choose a Workspace"
msgstr "Kies een Werkruimte"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Kies het formaat dat wordt gebruikt om de datumnotatie weer te geven"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Kies uw proefperiode"
@@ -1521,10 +1480,10 @@ msgstr "Configureer en pas uw kalendervoorkeuren aan."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configureer CalDAV-instellingen om uw agenda-evenementen te synchroniseren."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Stel in hoe datums in de app worden weergegeven"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configureer uw e-mail- en kalenderinstellingen."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Bevestigen"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bevestigen verwijderen van rol {roleName}? Dit kan niet ongedaan worden gemaakt. Alle leden zullen worden herverdeeld naar de standaard rol."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Context"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kredietplan"
msgid "Credit Usage"
msgstr "Kredietgebruik"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Gebruikte credits"
msgid "currencies"
msgstr "valuta's"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Aangepast domein bijgewerkt"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Aangepaste objecten"
@@ -2096,6 +2025,11 @@ msgstr "Databaseconfiguratie is momenteel uitgeschakeld."
msgid "Date"
msgstr "Datum"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Datum en tijd"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Synchroniseer geen e-mails van team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Bewerk betaalmethode, bekijk uw facturen en meer"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "E-mail gekopieerd naar klembord"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-mailintegratie"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Verhoogt de beveiliging door naast uw wachtwoord een code te vereisen"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Geniet van een {withCreditCardTrialPeriodDuration}-daagse gratis proefperiode"
@@ -2916,35 +2844,20 @@ msgstr "Fout bij het bijwerken van de rol"
msgid "Error validating approved access domain"
msgstr "Fout bij het valideren van de goedgekeurde toegangsdomein "
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Fout tijdens het beëindigen van de proefperiode. Neem contact op met het Twenty-team."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Fout tijdens het overstappen van abonnement naar Organisatieplan."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Fout tijdens het overstappen van abonnement naar jaarlijks."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formaat"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formaat bijv. d-MMM-j (qqq''jj)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Frans"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Volledige toegang"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Haal het meeste uit je werkruimte door je team uit te nodigen."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Krijg je abonnement"
@@ -3798,11 +3706,6 @@ msgstr "Integraties - Instellingen"
msgid "Interact with your workspace data"
msgstr "Interageer met uw werkruimtegegevens"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Laden..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Beheer API-sleutels en webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Beheer factuurinformatie"
@@ -4388,11 +4291,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Metadatabestandsgeneratie mislukt"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Controleer de uitvoering van uw e-mailsynchronisatietaak"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "maand"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "maandelijks"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nieuwe SSO-provider"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Volgende"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Of"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisatie"
@@ -5141,6 +5037,11 @@ msgstr "Organisatie"
msgid "Other"
msgstr "Overige"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Afbeelding"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Privacybeleid"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Eenmalige aanmelding"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abonnement"
msgid "Subscription activated."
msgstr "Abonnement geactiveerd."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Abonnement is veranderd naar Organisatieplan."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Abonnement is veranderd naar jaarlijks."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Ondersteuning"
msgid "Swedish"
msgstr "Zweeds"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Wissel naar Organisatie"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Deze waarde zal in de database worden opgeslagen."
msgid "This week"
msgstr "Deze week"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Volg je {intervalLabel} workflow kredietverbruik."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Proef"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Onbekende fout"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Onbeperkte contacten"
@@ -7145,12 +7015,6 @@ msgstr "Agent informatie bijwerken"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Werk uw accountconfiguratie bij. Configureer naar behoefte een combinatie van IMAP, SMTP en CalDAV."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Weergave"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Factuurdetails bekijken"
@@ -7548,12 +7412,12 @@ msgstr "Schrijf een beschrijving voor deze agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "jaar"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "jaarlijks"
@@ -7603,30 +7467,20 @@ msgstr ""
"U kunt deze verbinding niet bewerken omdat deze getrackte tabellen bevat.\n"
"Als u wijzigingen moet aanbrengen, maak dan een nieuwe verbinding of desynchroniseer eerst de tabellen."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "U wordt €${enterprisePrice} per gebruiker per maand in rekening gebracht, jaarlijks gefactureerd."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "U wordt €${enterprisePrice} per gebruiker per maand in rekening gebracht."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "U wordt €${yearlyPrice} per gebruiker per maand in rekening gebracht, jaarlijks gefactureerd. Een prorata met uw huidige abonnement wordt toegepast."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Uw naam zoals deze zal worden weergegeven"
msgid "Your name as it will be displayed on the app"
msgstr "Uw naam zoals deze in de app zal worden weergegeven"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Uw werkruimte heeft geen actief abonnement. Neem contact op met uw beheerder."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Uw werkruimte wordt uitgeschakeld"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Fortid"
msgid ": Today"
msgstr ": I dag"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} fil(er) kunne ikke lastes opp"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} av {formattedRecordsToImportCount} poster importert."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Skriv"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 nodeutføringer av arbeidsflyt"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Angi {objectLabelPlural} rettigheter"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 nodeutføringer av arbeidsflyt"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API og webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Svarteliste"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Bestill en samtale"
@@ -1212,43 +1206,13 @@ msgstr "Kan ikke skanne? Kopier "
msgid "Cancel"
msgstr "Avbryt"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Avbryt abonnement"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Si opp abonnementet ditt"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Endre passord"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Endre plan"
@@ -1289,21 +1253,11 @@ msgstr "Endre plan"
msgid "Change subdomain?"
msgstr "Endre subdomene?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Bytt til organisasjonsplan?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Kinesisk — Tradisjonell"
msgid "Choose a Workspace"
msgstr "Velg et arbeidsområde"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Velg formatet som brukes til å vise dato"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Velg din prøveperiode"
@@ -1521,10 +1480,10 @@ msgstr "Konfigurer og tilpass dine kalenderinnstillinger."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Konfigurer CalDAV-innstillinger for å synkronisere kalenderhendelsene dine."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Konfigurer hvordan datoer vises i hele appen"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Konfigurer dine e-post- og kalenderinnstillinger."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Bekreft"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bekreft sletting av {roleName}-rolle? Dette kan ikke angres. Alle medlemmer vil bli tildelt standardrollen."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Kontekst"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kredittplan"
msgid "Credit Usage"
msgstr "Kredittbruk"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Kreditter brukt"
msgid "currencies"
msgstr "valutaer"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Egendefinert domene oppdatert"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Tilpassede objekter"
@@ -2096,6 +2025,11 @@ msgstr "Databasekonfigurasjon er for øyeblikket deaktivert."
msgid "Date"
msgstr "Dato"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Dato og tid"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Ikke synkroniser e-poster fra team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Rediger betalingsmetode, se dine fakturaer og mer"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "E-post kopiert til utklippstavlen"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-postintegrasjon"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Øker sikkerheten ved å kreve en kode sammen med passordet ditt"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Nyt en {withCreditCardTrialPeriodDuration}-dagers gratis prøveperiode"
@@ -2916,35 +2844,20 @@ msgstr "Feil ved oppdatering av rolle"
msgid "Error validating approved access domain"
msgstr "Feil ved validering av godkjent tilgangsdomene"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Feil ved avslutning av prøveperiode. Vennligst kontakt Twenty-teamet."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Feil under bytte av abonnement til organisasjonsplan."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Feil under bytte av abonnement til årlig."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format f.eks. d-MMM-å (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Fransk"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Full tilgang"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Få mest mulig ut av arbeidsområdet ditt ved å invitere teamet ditt."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Få abonnementet ditt"
@@ -3798,11 +3706,6 @@ msgstr "Integrasjoner - Innstillinger"
msgid "Interact with your workspace data"
msgstr "Samhandle med dataene i arbeidsområdet ditt"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Laster inn..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Administrer API-nøkler og webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Administrer faktureringsinformasjon"
@@ -4388,11 +4291,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Generering av metadatafil mislyktes"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Overvåk utførelsen av synkroniseringsjobben for e-postene dine"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "måned"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "månedlig"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Ny SSO-leverandør"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Neste"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Eller"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisasjon"
@@ -5141,6 +5037,11 @@ msgstr "Organisasjon"
msgid "Other"
msgstr "Annen"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Bilde"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Personvernpolicy"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Proff"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abonnement"
msgid "Subscription activated."
msgstr "Abonnement aktivert."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Abonnementet har blitt byttet til organisasjonsplan."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Abonnementet har blitt byttet til årlig."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Støtte"
msgid "Swedish"
msgstr "Svensk"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Bytt til Organisasjon"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Denne verdien vil bli lagret i databasen."
msgid "This week"
msgstr "Denne uken"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Spor din {intervalLabel} arbeidsflytkredittforbruk."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Prøve"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Ukjent feil"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Ubegrenset kontakter"
@@ -7145,12 +7015,6 @@ msgstr "Oppdater agentinformasjon"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Oppdater konfigurasjonen av kontoen din. Konfigurer enhver kombinasjon av IMAP, SMTP og CalDAV etter behov."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Vis"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Vis faktureringsdetaljer"
@@ -7548,12 +7412,12 @@ msgstr "Skriv en beskrivelse for denne agenten"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "år"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "årlig"
@@ -7603,30 +7467,20 @@ msgstr ""
"Du kan ikke redigere denne tilkoblingen fordi den har sporede tabeller.\n"
"Hvis du trenger å gjøre endringer, vennligst opprett en ny tilkobling eller opphev synkroniseringen av tabellene først."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Du vil bli belastet ${enterprisePrice} per bruker per måned fakturert årlig."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Du vil bli belastet ${enterprisePrice} per bruker per måned."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Du vil bli belastet ${yearlyPrice} per bruker per måned fakturert årlig. Et prosentvis delbeløp med ditt nåværende abonnement vil bli anvendt."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Ditt navn slik det vil bli vist"
msgid "Your name as it will be displayed on the app"
msgstr "Ditt navn slik det vil bli vist i appen"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Arbeidsområdet ditt har ikke et aktivt abonnement. Vennligst kontakt din administrator."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Ditt arbeidsområde vil bli deaktivert"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Przeszłość"
msgid ": Today"
msgstr ": Dziś"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "Czy plik {failedCount} nie został przesłany"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} z {formattedRecordsToImportCount} rekordów zaimportowanych."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Typ"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 wykonanych operacji w węźle procesów"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Ustaw uprawnienia {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 wykonanych operacji w węźle procesów"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API i Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Czarna lista"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Umów rozmowę"
@@ -1212,43 +1206,13 @@ msgstr "Nie można zeskanować? Skopiuj"
msgid "Cancel"
msgstr "Anuluj"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Anuluj subskrypcję"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Anuluj swoją subskrypcję"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Zmień hasło"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Zmień plan"
@@ -1289,21 +1253,11 @@ msgstr "Zmień plan"
msgid "Change subdomain?"
msgstr "Zmień subdomenę?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Zmień na plan organizacyjny?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chiński — Tradycyjny"
msgid "Choose a Workspace"
msgstr "Wybierz przestrzeń roboczą"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Wybierz format używany do wyświetlania daty"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Wybierz swój okres próbny"
@@ -1521,10 +1480,10 @@ msgstr "Skonfiguruj i dostosuj swoje preferencje kalendarza."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Skonfiguruj ustawienia CalDAV, aby synchronizować wydarzenia w kalendarzu."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Skonfiguruj sposób wyświetlania dat w aplikacji"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Skonfiguruj swoje ustawienia e-mail i kalendarza."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Potwierdź"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Potwierdzić usunięcie roli {roleName}? Tego nie można cofnąć. Wszyscy członkowie zostaną przypisani do domyślnej roli."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Kontekst"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Plan kredytowy"
msgid "Credit Usage"
msgstr "Wykorzystanie kredytów"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Wykorzystane kredyty"
msgid "currencies"
msgstr "waluty"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Zaktualizowano domenę niestandardową"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Obiekty niestandardowe"
@@ -2096,6 +2025,11 @@ msgstr "Konfiguracja bazy danych jest obecnie wyłączona."
msgid "Date"
msgstr "Data"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Data i czas"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Nie synchronizuj e-maili z team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Edytuj sposób płatności, zobacz swoje faktury i więcej"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email został skopiowany do schowka"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integracja emailowa"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Zwiększa bezpieczeństwo, wymagając podania kodu wraz z hasłem"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Ciesz się {withCreditCardTrialPeriodDuration}-dniowym bezpłatnym okresem próbnym"
@@ -2916,35 +2844,20 @@ msgstr "Błąd podczas aktualizacji roli"
msgid "Error validating approved access domain"
msgstr "Błąd weryfikacji zatwierdzonej domeny dostępu"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Błąd podczas kończenia okresu próbnego. Proszę skontaktować się z zespołem Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Błąd podczas zmiany subskrypcji na plan organizacyjny."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Błąd podczas zmiany subskrypcji na roczny."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format np. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francuski"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Pełny dostęp"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Wykorzystaj w pełni swoje miejsce pracy, zapraszając swój zespół."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Weź swój abonament"
@@ -3798,11 +3706,6 @@ msgstr "Integracje - Ustawienia"
msgid "Interact with your workspace data"
msgstr "Wejdź w interakcję z danymi w swoim miejscu pracy"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Ładowanie..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Zarządzaj kluczami API i webhookami"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Zarządzaj informacjami o rozliczeniach"
@@ -4388,11 +4291,6 @@ msgstr "Metadane"
msgid "Metadata file generation failed"
msgstr "Generowanie pliku metadanych nie powiodło się"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitorowanie wykonywania zadania synchronizacji wiadomości e-mail"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "miesiąc"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "miesięcznie"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nowy dostawca SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Dalej"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Lub"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organizacja"
@@ -5141,6 +5037,11 @@ msgstr "Organizacja"
msgid "Other"
msgstr "Inne"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Zdjęcie"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Polityka prywatności"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Subskrypcja"
msgid "Subscription activated."
msgstr "Subskrypcja aktywowana."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Subskrypcja została zmieniona na plan organizacyjny."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Subskrypcja została zmieniona na roczny."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Wsparcie"
msgid "Swedish"
msgstr "szwedzki"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Przełącz na organizację"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Ta wartość zostanie zapisana w bazie danych."
msgid "This week"
msgstr "Ten tydzień"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Śledź zużycie kredytów workflow w {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Test"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Nieznany błąd"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Nieograniczona liczba kontaktów"
@@ -7145,12 +7015,6 @@ msgstr "Zaktualizuj informacje o agencie"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Zaktualizuj konfigurację swojego konta. Skonfiguruj dowolne połączenie IMAP, SMTP i CalDAV w razie potrzeby."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Widok"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Zobacz szczegóły płatności"
@@ -7548,12 +7412,12 @@ msgstr "Napisz opis dla tego agenta"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "rok"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "rocznie"
@@ -7601,30 +7465,20 @@ msgid ""
"If you need to make changes, please create a new connection or unsync the tables first."
msgstr "Nie możesz edytować tego połączenia, ponieważ ma monitorowane tabele. Jeśli musisz wprowadzić zmiany, utwórz nowe połączenie lub najpierw odłącz tabele."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Będzie naliczona opłata ${enterprisePrice} za użytkownika miesięcznie z rozliczeniem rocznym."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Będzie naliczona opłata ${enterprisePrice} za użytkownika miesięcznie."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Będzie naliczona opłata ${yearlyPrice} za użytkownika miesięcznie z rozliczeniem rocznym. Zostanie zastosowany dopłata równoważąca z obecną subskrypcją."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7661,16 +7515,6 @@ msgstr "Twoje imię, które będzie wyświetlane"
msgid "Your name as it will be displayed on the app"
msgstr "Twoje imię, które będzie wyświetlane w aplikacji"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7687,6 +7531,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Twoje środowisko robocze nie ma aktywnej subskrypcji. Proszę skontaktować się z administratorem."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Twoje miejsce pracy zostanie wyłączone"
+69 -225
View File
@@ -13,12 +13,6 @@ msgstr ""
"Language-Team: \n"
"Plural-Forms: \n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -64,11 +58,6 @@ msgstr ""
msgid ": Today"
msgstr ""
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -119,6 +108,11 @@ msgstr ""
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr ""
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr ""
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -163,7 +157,7 @@ msgid "1. Type"
msgstr ""
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr ""
@@ -194,7 +188,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr ""
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr ""
@@ -761,8 +755,8 @@ msgid "API"
msgstr ""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr ""
@@ -1079,7 +1073,7 @@ msgid "Blocklist"
msgstr ""
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr ""
@@ -1207,43 +1201,13 @@ msgstr ""
msgid "Cancel"
msgstr ""
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr ""
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr ""
@@ -1275,7 +1239,7 @@ msgid "Change Password"
msgstr ""
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr ""
@@ -1284,21 +1248,11 @@ msgstr ""
msgid "Change subdomain?"
msgstr ""
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr ""
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1339,6 +1293,11 @@ msgstr ""
msgid "Choose a Workspace"
msgstr ""
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1365,7 +1324,7 @@ msgid "Choose the format used to display date value"
msgstr ""
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr ""
@@ -1516,9 +1475,9 @@ msgstr ""
msgid "Configure CalDAV settings to sync your calendar events."
msgstr ""
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgid "Configure how dates are displayed across the app"
msgstr ""
#. js-lingui-id: ghdb7+
@@ -1558,34 +1517,14 @@ msgstr ""
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr ""
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr ""
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1647,7 +1586,7 @@ msgstr ""
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1934,11 +1873,6 @@ msgstr ""
msgid "Credit Usage"
msgstr ""
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1949,11 +1883,6 @@ msgstr ""
msgid "currencies"
msgstr ""
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1981,8 +1910,8 @@ msgid "Custom domain updated"
msgstr ""
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr ""
@@ -2091,6 +2020,11 @@ msgstr ""
msgid "Date"
msgstr ""
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr ""
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2512,12 +2446,6 @@ msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2623,7 +2551,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr ""
@@ -2674,8 +2602,8 @@ msgid "Email copied to clipboard"
msgstr ""
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr ""
@@ -2791,7 +2719,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr ""
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr ""
@@ -2911,34 +2839,19 @@ msgstr ""
msgid "Error validating approved access domain"
msgstr ""
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr ""
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgid "Error while switching subscription to Organization Plan."
msgstr ""
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgid "Error while switching subscription to Yearly."
msgstr ""
#. js-lingui-id: JLxMta
@@ -3339,11 +3252,6 @@ msgstr ""
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr ""
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3355,8 +3263,8 @@ msgid "French"
msgstr ""
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr ""
@@ -3394,7 +3302,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr ""
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr ""
@@ -3793,11 +3701,6 @@ msgstr ""
msgid "Interact with your workspace data"
msgstr ""
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4211,7 +4114,7 @@ msgid "Loading..."
msgstr ""
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4253,7 +4156,7 @@ msgid "Manage API keys and webhooks"
msgstr ""
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr ""
@@ -4383,11 +4286,6 @@ msgstr ""
msgid "Metadata file generation failed"
msgstr ""
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4415,7 +4313,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr ""
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr ""
@@ -4427,7 +4325,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr ""
@@ -4656,7 +4554,6 @@ msgid "New SSO provider"
msgstr ""
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr ""
@@ -5122,8 +5019,7 @@ msgid "Or"
msgstr ""
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr ""
@@ -5136,6 +5032,11 @@ msgstr ""
msgid "Other"
msgstr ""
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5277,11 +5178,6 @@ msgstr ""
msgid "Plan"
msgstr ""
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5381,8 +5277,7 @@ msgid "Privacy Policy"
msgstr ""
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr ""
@@ -6426,7 +6321,7 @@ msgid "SSO"
msgstr ""
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
@@ -6535,9 +6430,9 @@ msgstr ""
msgid "Subscription activated."
msgstr ""
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgid "Subscription has been switched to Organization Plan."
msgstr ""
#. js-lingui-id: A5YO8f
@@ -6545,11 +6440,6 @@ msgstr ""
msgid "Subscription has been switched to Yearly."
msgstr ""
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6581,21 +6471,11 @@ msgstr ""
msgid "Swedish"
msgstr ""
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr ""
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6901,16 +6781,6 @@ msgstr ""
msgid "This week"
msgstr ""
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6971,7 +6841,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr ""
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr ""
@@ -7099,8 +6969,8 @@ msgid "Unknown error"
msgstr ""
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr ""
@@ -7140,12 +7010,6 @@ msgstr ""
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr ""
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7307,7 +7171,7 @@ msgid "View"
msgstr ""
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr ""
@@ -7543,12 +7407,12 @@ msgstr ""
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr ""
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr ""
@@ -7596,29 +7460,19 @@ msgid ""
"If you need to make changes, please create a new connection or unsync the tables first."
msgstr ""
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr ""
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr ""
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: C2d+Xk
@@ -7656,16 +7510,6 @@ msgstr ""
msgid "Your name as it will be displayed on the app"
msgstr ""
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7682,6 +7526,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr ""
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr ""
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Passado"
msgid ": Today"
msgstr ": Hoje"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} arquivo(s) não conseguiu(aram) ser carregado(s)"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} de {formattedRecordsToImportCount} registros importados."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 execuções de nós de workflow"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Defina permissões de {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 execuções de nós de workflow"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API e Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Lista de Bloqueio"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Agendar uma Chamada"
@@ -1212,43 +1206,13 @@ msgstr "Não consegue escanear? Copie o"
msgid "Cancel"
msgstr "Cancelar"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Cancelar Plano"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Cancelar sua assinatura"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Alterar Senha"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Alterar Plano"
@@ -1289,21 +1253,11 @@ msgstr "Alterar Plano"
msgid "Change subdomain?"
msgstr "Alterar subdomínio?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Alterar para o Plano Organizacional?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chinês - Tradicional"
msgid "Choose a Workspace"
msgstr "Escolha um Espaço de Trabalho"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Escolha o formato usado para exibir o valor da data"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Escolha seu Teste"
@@ -1521,10 +1480,10 @@ msgstr "Configure e personalize suas preferências de calendário."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configure as configurações do CalDAV para sincronizar seus eventos de calendário."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Configurar como as datas são exibidas no aplicativo"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configure suas configurações de e-mail e calendário."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Confirmar"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirmar exclusão da função {roleName}? Isso não pode ser desfeito. Todos os membros serão reatribuídos à função padrão."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Contexto"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Plano de Crédito"
msgid "Credit Usage"
msgstr "Uso de Crédito"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Créditos Utilizados"
msgid "currencies"
msgstr "moedas"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Domínio personalizado atualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -2096,6 +2025,11 @@ msgstr "A configuração do banco de dados está atualmente desativada."
msgid "Date"
msgstr "Data"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Data e Hora"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Não sincronize e-mails de team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editar método de pagamento, ver suas faturas e mais"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email copiado para a área de transferência"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integração de e-mail"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Aumenta a segurança exigindo um código junto com sua senha"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Aproveite um teste gratuito de {withCreditCardTrialPeriodDuration} dias"
@@ -2916,35 +2844,20 @@ msgstr "Erro ao atualizar o papel"
msgid "Error validating approved access domain"
msgstr "Erro ao validar o domínio de acesso aprovado"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Erro ao encerrar o período de avaliação. Por favor, entre em contato com a equipe Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Erro ao trocar a assinatura para o Plano Organizacional."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Erro ao trocar a assinatura para anual."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formato"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formato ex. d-MMM-a (qqq''aa)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francês"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acesso total"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Aproveite ao máximo seu workspace convidando sua equipe."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Faça sua assinatura"
@@ -3798,11 +3706,6 @@ msgstr "Integrações - Configurações"
msgid "Interact with your workspace data"
msgstr "Interagir com os dados do seu espaço de trabalho"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Carregando..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Gerenciar API e webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Gerenciar informações de cobrança"
@@ -4388,11 +4291,6 @@ msgstr "Metadados"
msgid "Metadata file generation failed"
msgstr "Falha na geração do arquivo de metadados"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitore a execução do trabalho de sincronização dos seus e-mails"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "mês"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "mensal"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Novo provedor SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Próximo"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Ou"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organização"
@@ -5141,6 +5037,11 @@ msgstr "Organização"
msgid "Other"
msgstr "Outros"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Imagem"
msgid "Plan"
msgstr "Plano"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Política de privacidade"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Assinatura"
msgid "Subscription activated."
msgstr "Assinatura ativada."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "A assinatura foi alterada para o Plano Organizacional."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "A assinatura foi alterada para anual."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Suporte"
msgid "Swedish"
msgstr "Sueco"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Alterar para Organização"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Esse valor será salvo no banco de dados."
msgid "This week"
msgstr "Esta semana"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Acompanhe seu consumo {intervalLabel} de créditos de workflows."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Teste"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Erro desconhecido"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contatos ilimitados"
@@ -7145,12 +7015,6 @@ msgstr "Atualizar informações do agente"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Atualize a configuração de sua conta. Configure qualquer combinação de IMAP, SMTP e CalDAV conforme necessário."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Visualização"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Ver detalhes de faturamento"
@@ -7548,12 +7412,12 @@ msgstr "Escreva uma descrição para este agente"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "ano"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "anual"
@@ -7603,30 +7467,20 @@ msgstr ""
"Você não pode editar esta conexão porque ela possui tabelas rastreadas.\n"
"Se precisar fazer alterações, crie uma nova conexão ou desincronize primeiro as tabelas."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Você será cobrado ${enterprisePrice} por usuário por mês faturado anualmente."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Você será cobrado ${enterprisePrice} por usuário por mês."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Você será cobrado ${yearlyPrice} por usuário por mês faturado anualmente. Um prorrateio com sua assinatura atual será aplicado."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Seu nome como será mostrado"
msgid "Your name as it will be displayed on the app"
msgstr "Seu nome como ser\\u00e1 exibido no aplicativo"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Seu espaço de trabalho não possui uma assinatura ativa. Por favor, contate seu administrador."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Seu workspace será desativado"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Passado"
msgid ": Today"
msgstr ": Hoje"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} arquivo(s) falhou(aram) ao carregar"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} de {formattedRecordsToImportCount} registros importados."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tipo"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 execuções de nós de workflow"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Defina permissões de {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 execuções de nós de workflow"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "\"API\""
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API e Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Lista de bloqueio"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Marcar uma chamada"
@@ -1212,43 +1206,13 @@ msgstr "Não consegue escanear? Copie o"
msgid "Cancel"
msgstr "Cancelar"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Cancelar plano"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Cancelar a sua subscrição"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Alterar palavra-passe"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Mudar Plano"
@@ -1289,21 +1253,11 @@ msgstr "Mudar Plano"
msgid "Change subdomain?"
msgstr "Alterar subdomínio?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Mudar para plano empresarial?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chinês - Tradicional"
msgid "Choose a Workspace"
msgstr "Escolha uma Área de Trabalho"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Escolha o formato usado para exibir o valor da data"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Escolha o seu teste"
@@ -1521,10 +1480,10 @@ msgstr "Configure e personalize as suas preferências de calendário."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configure as definições CalDAV para sincronizar os seus eventos de calendário."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Configurar a forma como as datas são apresentadas na aplicação"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configure as definições de e-mail e calendário."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Confirmar"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirmar exclusão do papel {roleName}? Isso não pode ser desfeito. Todos os membros serão transferidos para o papel padrão."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Contexto"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Plano de Créditos"
msgid "Credit Usage"
msgstr "Uso de Créditos"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Créditos Utilizados"
msgid "currencies"
msgstr "moedas"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Domínio personalizado atualizado"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Objetos personalizados"
@@ -2096,6 +2025,11 @@ msgstr "A configuração do banco de dados está atualmente desativada."
msgid "Date"
msgstr "Data"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Data e hora"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Não sincronizar emails de team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editar método de pagamento, ver as suas faturas e muito mais"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email copiado para a área de transferência"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integração de e-mail"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Melhora a segurança ao exigir um código junto com sua senha"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Desfrute de um período experimental gratuito de {withCreditCardTrialPeriodDuration} dias"
@@ -2916,35 +2844,20 @@ msgstr "Erro ao atualizar papel"
msgid "Error validating approved access domain"
msgstr "Erro ao validar o domínio de acesso aprovado"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Erro ao encerrar o período de avaliação. Por favor, entre em contato com a equipe Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Erro ao mudar a subscrição para plano empresarial."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Erro ao mudar a subscrição para anual."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Formato"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Formato por exemplo d-MMM-a (qqq''aa)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Francês"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acesso total"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Tire o máximo partido do seu espaço de trabalho convidando a sua equipa."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Obtenha a sua subscrição"
@@ -3798,11 +3706,6 @@ msgstr "Integrações - Configurações"
msgid "Interact with your workspace data"
msgstr "Interaja com os dados do seu espaço de trabalho"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Carregando..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Gerenciar chaves API e webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Gerenciar informações de faturamento"
@@ -4388,11 +4291,6 @@ msgstr "Metadados"
msgid "Metadata file generation failed"
msgstr "Falha na geração do arquivo de metadados"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitore a execução do seu trabalho de sincronização de emails"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "mês"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "mensal"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Novo fornecedor SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Próximo"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Ou"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organização"
@@ -5141,6 +5037,11 @@ msgstr "Organização"
msgid "Other"
msgstr "Outros"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Imagem"
msgid "Plan"
msgstr "Plano"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Política de Privacidade"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Subscrição"
msgid "Subscription activated."
msgstr "Assinatura ativada."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "A subscrição foi alterada para plano empresarial."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "A subscrição foi alterada para anual."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Suporte"
msgid "Swedish"
msgstr "Sueco"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Mudar para Organização"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Este valor será salvo no banco de dados."
msgid "This week"
msgstr "Esta semana"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Acompanhe seu consumo de créditos de fluxo de trabalho {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Teste"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Erro desconhecido"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contactos ilimitados"
@@ -7145,12 +7015,6 @@ msgstr "Atualizar as informações do agente"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Atualize a configuração da sua conta. Configure qualquer combinação de IMAP, SMTP e CalDAV conforme necessário."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Vista"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Ver detalhes de faturação"
@@ -7548,12 +7412,12 @@ msgstr "Escreva uma descrição para este agente"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "ano"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "anual"
@@ -7603,30 +7467,20 @@ msgstr ""
"Você não pode editar esta conexão porque ela tem tabelas rastreadas.\n"
"Se precisar fazer alterações, por favor, crie uma nova conexão ou desincronize as tabelas primeiro."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Ser-lhe-á cobrado ${enterprisePrice} por utilizador por mês faturado anualmente."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Ser-lhe-á cobrado ${enterprisePrice} por utilizador por mês."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Ser-lhe-á cobrado ${yearlyPrice} por utilizador por mês faturado anualmente. Um prorrata com a sua subscrição atual será aplicado."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "O seu nome como será exibido"
msgid "Your name as it will be displayed on the app"
msgstr "O seu nome como será exibido no aplicativo"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Seu workspace não possui uma assinatura ativa. Por favor, entre em contato com o administrador."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "O seu espaço de trabalho será desativado"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Trecut"
msgid ": Today"
msgstr ": Azi"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} fișier(e) nu a(u) reușit să se încarce"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} din {formattedRecordsToImportCount} înregistrări importate."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tip"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 de execuții ale nodurilor fluxului de lucru"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Stabiliți permisiunile {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 de execuții ale nodurilor fluxului de lucru"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Lista neagră"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Programează un apel"
@@ -1212,43 +1206,13 @@ msgstr "Nu poți scana? Copiază"
msgid "Cancel"
msgstr "Anulare"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Anulează planul"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Anulează abonamentul"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Schimbă parola"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Schimbă planul"
@@ -1289,21 +1253,11 @@ msgstr "Schimbă planul"
msgid "Change subdomain?"
msgstr "Schimbați subdomeniul?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Schimbare la Planul Organizației?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Chineză — Tradițională"
msgid "Choose a Workspace"
msgstr "Alege un spațiu de lucru"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Alege formatul utilizat pentru a afișa valoarea datei"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Alegeți perioada de încercare"
@@ -1521,10 +1480,10 @@ msgstr "Configurați și personalizați preferințele calendarului dumneavoastr
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Configurați setările CalDAV pentru a sincroniza evenimentele calendarului."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Configurați modul în care sunt afișate datele în aplicație"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Configurați setările de e-mail și calendar."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Confirmă"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Confirmați ștergerea rolului {roleName}? Această acțiune nu poate fi anulată. Toți membrii vor fi realocați rolului implicit."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Context"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Plan de credit"
msgid "Credit Usage"
msgstr "Utilizare credit"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Credite utilizate"
msgid "currencies"
msgstr "valute"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Domeniu personalizat actualizat"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Obiecte personalizate"
@@ -2096,6 +2025,11 @@ msgstr "Configurarea bazei de date este dezactivată în prezent."
msgid "Date"
msgstr "Dată"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Dată și oră"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Nu sincronizați emailurile de la team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Editează metoda de plată, vezi facturile tale și mai mult"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Email copiat în clipboard"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Integrare email"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Îmbunătățește securitatea prin solicitarea unui cod împreună cu parola ta"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Bucură-te de un proces gratuit de {withCreditCardTrialPeriodDuration} de zile"
@@ -2916,35 +2844,20 @@ msgstr "Eroare la actualizarea rolului"
msgid "Error validating approved access domain"
msgstr "Eroare la validarea domeniului de acces aprobat"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Eroare la terminarea perioadei de probă. Vă rugăm contactaţi echipa Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Eroare la schimbarea abonamentului la Planul Organizației."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Eroare la schimbarea abonamentului la anual."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format ex. z-MMM-a (qqq''aa)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Franceză"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Acces complet"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Maximizați potențialul spațiului de lucru invitați echipa."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Obțineți abonamentul"
@@ -3798,11 +3706,6 @@ msgstr "Integrări - Setări"
msgid "Interact with your workspace data"
msgstr "Interacţionează cu datele workspace-ului tău"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Se încarcă..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Gestionează cheile API și webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Gestionați informațiile de facturare"
@@ -4388,11 +4291,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Generarea fișierului de metadate a eșuat"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Monitorizează execuția sarcinii de sincronizare a e-mailurilor"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "lună"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "lunar"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nou furnizor SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Următorul"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Sau"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organizație"
@@ -5141,6 +5037,11 @@ msgstr "Organizație"
msgid "Other"
msgstr "Altul"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Imagine"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Politica de confidențialitate"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Autentificare Unică"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abonament"
msgid "Subscription activated."
msgstr "Abonament activat."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Abonamentul a fost schimbat la Planul Organizației."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Abonamentul a fost schimbat la anual."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Suport"
msgid "Swedish"
msgstr "Suedeză"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Comută la Organizație"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Această valoare va fi salvată în baza de date."
msgid "This week"
msgstr "Săptămâna aceasta"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Urmărește consumul de credite de flux de lucru {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Proces"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Eroare necunoscută"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Contacte nelimitate"
@@ -7145,12 +7015,6 @@ msgstr "Actualizează informațiile agentului"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Actualizați configurarea contului dumneavoastră. Configurați orice combinație de IMAP, SMTP și CalDAV, după caz."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Vizualizare"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Vizualizează detalii despre facturare"
@@ -7548,12 +7412,12 @@ msgstr "Scrie o descriere pentru acest agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "an"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "anual"
@@ -7603,30 +7467,20 @@ msgstr ""
"Nu poți edita această conexiune deoarece are mese urmărite.\n"
"Dacă ai nevoie să faci modificări, te rugăm să creezi o nouă conexiune sau să anulezi sincronizarea mesei mai întâi."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Veți fi taxat cu ${enterprisePrice} pe utilizator pe luna facturat anual."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Veți fi taxat cu ${enterprisePrice} pe utilizator pe lună."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Veți fi taxat cu ${yearlyPrice} pe utilizator pe lună facturat anual. Un prorata cu abonamentul vostru actual va fi aplicat."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Numele dvs. așa cum va fi afișat"
msgid "Your name as it will be displayed on the app"
msgstr "Numele dvs. așa cum va fi afișat în aplicație"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Spațiul dvs. de lucru nu are un abonament activ. Vă rugăm să contactați administratorul."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Spațiul tău de lucru va fi dezactivat"
Binary file not shown.
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Прошлост"
msgid ": Today"
msgstr ": Данас"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} датотека(е) нису успеле да се от
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} од {formattedRecordsToImportCount} записа увезено."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Тип"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 извршења чворова радног тока"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Поставите {objectLabelPlural} дозволе"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 извршења чворова радног тока"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "АПИ"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API и Вебхукси"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Црна листа"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Закажите позив"
@@ -1212,43 +1206,13 @@ msgstr "Не можете да скенирате? Копирајте"
msgid "Cancel"
msgstr "Откажи"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Откажи план"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Откажите претплату"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Промени лозинку"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Промени план"
@@ -1289,21 +1253,11 @@ msgstr "Промени план"
msgid "Change subdomain?"
msgstr "Променити поддомен?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Промените на организациони план?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Кинески — Традиционални"
msgid "Choose a Workspace"
msgstr "Изаберите радни простор"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Изаберите формат за приказ датума"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Изаберите врсту пробе"
@@ -1521,10 +1480,10 @@ msgstr "Подесите и прилагодите своје преференц
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Конфигуришите CalDAV подешавања за синхронизацију догађаја у календару."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Подесите како су датуми приказани широм апликације"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Подесите своје подешавања е-поште и кал
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Потврди"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Потврдите брисање улоге {roleName}? Ово не може бити опозвано. Сви чланови ће бити пребачени у подразумевану улогу."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Контекст"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Кредитни план"
msgid "Credit Usage"
msgstr "Кредитно коришћење"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Кредити искоришћени"
msgid "currencies"
msgstr ""
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Прилагођени домен ажуриран"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Прилагођени објекти"
@@ -2096,6 +2025,11 @@ msgstr "Конфигурација базе података је тренутн
msgid "Date"
msgstr "Датум"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Датум и време"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Не синхронизујте имејлове од team@ support@ nor
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Измени начин плаћања, погледај своје фактуре и још много тога"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Емаил копиран у клипборд"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Имејл интеграција"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Побољшава безбедност тако што захтева код заједно са вашом лозинком"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Уживајте у бесплатном пробном периоду од {withCreditCardTrialPeriodDuration} дана"
@@ -2916,35 +2844,20 @@ msgstr "Грешка приликом ажурирања улоге"
msgid "Error validating approved access domain"
msgstr "Грешка при валидацији одобреног приступног домена"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Грешка приликом завршетка пробног периода. Молимо вас контактирајте Twenty тим."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Грешка приликом преласка претплате на организациони план."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Грешка приликом преласка на претплату на годишње."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Формат"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Формат нпр. д-МММ-гг (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Француски"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Потпун приступ"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Искористите максимално свој радни простор тако што ћете позвати свој тим."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Набави претплату"
@@ -3798,11 +3706,6 @@ msgstr "Интеграције - Подешавања"
msgid "Interact with your workspace data"
msgstr "Интеракција са подацима ваше радне површине"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Учитавање..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Управљање API кључевима и вебхуковима"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Управљајте информацијама о наплати"
@@ -4388,11 +4291,6 @@ msgstr "Метаподаци"
msgid "Metadata file generation failed"
msgstr "Генерисање датотеке метаподатака није успело"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Мониторисање извршења синхронизације ваших имејлова"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "месец"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "месечно"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Нови провајдер за SSO"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Следеће"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Или"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Организација"
@@ -5141,6 +5037,11 @@ msgstr "Организација"
msgid "Other"
msgstr "Остало"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Слика"
msgid "Plan"
msgstr "План"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Политика приватности"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Про"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Јединствена пријава"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "ССО (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Претплата"
msgid "Subscription activated."
msgstr "Претплата је активирана."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Претплата је промењена у организациони план."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Претплата је промењена на годишње."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Подршка"
msgid "Swedish"
msgstr "Шведски"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Промени на организацију"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Ова вредност ће бити сачувана у бази по
msgid "This week"
msgstr "Ове недеље"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Пратите своје {intervalLabel} потрошњу кредита за workflow."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Проба"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Непозната грешка"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Неограничени контакти"
@@ -7145,12 +7015,6 @@ msgstr "Ажурирајте информације о агенту"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Ажурирајте конфигурацију вашег налога. Подесите било коју комбинацију IMAP, SMTP и CalDAV по потреби."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Преглед"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Прегледај детаље о плаћању"
@@ -7548,12 +7412,12 @@ msgstr "Напишите опис за овог агента"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "година"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "годишње"
@@ -7603,30 +7467,20 @@ msgstr ""
"Не можете измењивати ову везу јер има праћене табеле.\n"
"Ако желите да извршите измене, креирајте нову везу или најпре искључите табеле."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Бићете наплаћени ${enterprisePrice} по кориснику месечно, фактурисано годишње."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Бићете наплаћени ${enterprisePrice} по кориснику месечно."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Бићете наплаћени ${yearlyPrice} по кориснику месечно, фактурисано годишње. Биће примењен пролазни однос са тренутном претплатом."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Ваше име како ће бити приказано"
msgid "Your name as it will be displayed on the app"
msgstr "Ваше име како ће бити приказано у апликацији"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Ваш радни простор нема активну претплату. Молимо вас ступите у контакт са вашим администратором."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Ваш радни простор ће бити онемогућен"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Förfluten"
msgid ": Today"
msgstr ": Idag"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} fil(er) kunde inte laddas upp"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} av {formattedRecordsToImportCount} poster importerade."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price} kr"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Typ"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 utföranden av arbetsflödesnoder"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Ställ in {objectLabelPlural} behörigheter"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 utföranden av arbetsflödesnoder"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Blocklista"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Boka ett samtal"
@@ -1212,43 +1206,13 @@ msgstr "Kan inte skanna? Kopiera "
msgid "Cancel"
msgstr "Avbryt"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Avsluta Plan"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Avsluta din prenumeration"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Byt Lösenord"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Ändra plan"
@@ -1289,21 +1253,11 @@ msgstr "Ändra plan"
msgid "Change subdomain?"
msgstr "Byt subdomän?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Byt till organisationsplan?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Kinesiska — Traditionell"
msgid "Choose a Workspace"
msgstr "Välj en arbetsyta"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Välj formatet som används för att visa datumvärdet"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Välj din provperiod"
@@ -1521,10 +1480,10 @@ msgstr "Konfigurera och anpassa dina kalenderinställningar."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Konfigurera CalDAV-inställningar för att synkronisera dina kalenderevenemang."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Konfigurera hur datum visas i hela appen"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Konfigurera dina e-post- och kalenderinställningar."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Bekräfta"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Bekräfta radering av {roleName}-rollen? Detta kan inte ångras. Alla medlemmar kommer att tilldelas standardrollen."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Sammanhang"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kreditplan"
msgid "Credit Usage"
msgstr "Kreditanvändning"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Använda krediter"
msgid "currencies"
msgstr "valutor"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Anpassad domän uppdaterad"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Anpassade objekt"
@@ -2096,6 +2025,11 @@ msgstr "Databaskonfiguration är för närvarande inaktiverad."
msgid "Date"
msgstr "Datum"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Datum och tid"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Synkronisera inte e-post från team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Redigera betalningsmetod, se dina fakturor och mer"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "E-post kopierad till urklipp"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-post integration"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Förbättrar säkerheten genom att kräva en kod tillsammans med ditt lösenord"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Njut av en {withCreditCardTrialPeriodDuration}-dagars gratis provperiod"
@@ -2916,35 +2844,20 @@ msgstr "Fel vid uppdatering av roll"
msgid "Error validating approved access domain"
msgstr "Fel vid validering av godkänd åtkomstdomän"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Fel vid avslutning av provperioden. Vänligen kontakta Twenty-teamet."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Fel vid byte av prenumeration till organisationsplan."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Fel vid byte av prenumeration till årligen."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Format"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format ex. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Franska"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Full tillgång"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Få ut det mesta av din arbetsyta genom att bjuda in ditt team."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Skaffa din prenumeration"
@@ -3798,11 +3706,6 @@ msgstr "Integrationer - Inställningar"
msgid "Interact with your workspace data"
msgstr "Interagera med dina arbetsytedata"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Laddar..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Hantera API-nycklar och webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Hantera faktureringsinformation"
@@ -4388,11 +4291,6 @@ msgstr "Metadata"
msgid "Metadata file generation failed"
msgstr "Generering av metadatafilen misslyckades"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4422,7 +4320,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Övervaka utförandet av ditt jobb för synkning av e-postmeddelanden"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "månad"
@@ -4434,7 +4332,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "månadsvis"
@@ -4663,7 +4561,6 @@ msgid "New SSO provider"
msgstr "Ny SSO-leverantör"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Nästa"
@@ -5129,8 +5026,7 @@ msgid "Or"
msgstr "Eller"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Organisation"
@@ -5143,6 +5039,11 @@ msgstr "Organisation"
msgid "Other"
msgstr "Annat"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5284,11 +5185,6 @@ msgstr "Bild"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5388,8 +5284,7 @@ msgid "Privacy Policy"
msgstr "Integritetspolicy"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6435,7 +6330,7 @@ msgid "SSO"
msgstr "Enkel inloggning"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6544,21 +6439,16 @@ msgstr "Prenumeration"
msgid "Subscription activated."
msgstr "Prenumeration aktiverad."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Prenumerationen har bytts till organisationsplan."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Prenumerationen har bytts till årligen."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6592,21 +6482,11 @@ msgstr "Support"
msgid "Swedish"
msgstr "Swedish"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Byt till organisation"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6918,16 +6798,6 @@ msgstr "Detta värde kommer att sparas i databasen."
msgid "This week"
msgstr "Denna vecka"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6988,7 +6858,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Följ din {intervalLabel} arbetsflödeskreditsförbrukning."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Provperiod"
@@ -7116,8 +6986,8 @@ msgid "Unknown error"
msgstr "Okänt fel"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Obegränsat med kontakter"
@@ -7157,12 +7027,6 @@ msgstr "Uppdatera agentinformation"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Uppdatera ditt konto's konfiguration. Konfigurera valfri kombination av IMAP, SMTP och CalDAV efter behov."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7324,7 +7188,7 @@ msgid "View"
msgstr "Vy"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Visa fakturadetaljer"
@@ -7560,12 +7424,12 @@ msgstr "Skriv en beskrivning för denna agent"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "år"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "årligen"
@@ -7615,30 +7479,20 @@ msgstr ""
"Du kan inte redigera denna anslutning eftersom den har spårade tabeller. \n"
"Om du behöver göra ändringar, vänligen skapa en ny anslutning eller avsynkronisera tabellerna först."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Du kommer att debiteras ${enterprisePrice} per användare och månad årligen."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Du kommer att debiteras ${enterprisePrice} per användare och månad."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Du kommer att debiteras ${yearlyPrice} per användare och månad årligen. En proration med din nuvarande prenumeration kommer att gälla."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7675,16 +7529,6 @@ msgstr "Ditt namn som det kommer att visas"
msgid "Your name as it will be displayed on the app"
msgstr "Ditt namn som det kommer att visas i appen"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7701,6 +7545,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Din arbetsyta har inte en aktiv prenumeration. Vänligen kontakta din administratör."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Din arbetsyta kommer att bli inaktiverad"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Geçmiş"
msgid ": Today"
msgstr ": Bugün"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} dosya yükleme başarısız oldu"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} kayıttan {formattedRecordsToImportCount} kaydı aktarıldı."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Tür"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 iş akışı düğüm çalıştırılması"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. {objectLabelPlural} izinlerini ayarlayın"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 iş akışı düğüm çalıştırılması"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhook'lar"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Engellenmiş Liste"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "\"Twenty\"'yi kullanarak"
@@ -1212,43 +1206,13 @@ msgstr "Tarayamaz mısınız? Kopyalayın."
msgid "Cancel"
msgstr "İptal"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Planı İptal Et"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Aboneliğinizi iptal edin"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Şifre Değiştir"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Planı Değiştir"
@@ -1289,21 +1253,11 @@ msgstr "Planı Değiştir"
msgid "Change subdomain?"
msgstr "Alt alan adını değiştirmek istiyor musunuz?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Kuruluş Planına Geçilsin mi?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Çince — Geleneksel"
msgid "Choose a Workspace"
msgstr "Bir Çalışma Alanı Seçin"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Tarih değerini görüntülemek için kullanılan formatı seçin"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Deneme Sürümünüzü Seçin"
@@ -1521,10 +1480,10 @@ msgstr "Takvim tercihlerinizi yapılandırın ve özelleştirin."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "CalDAV ayarlarını takvim etkinliklerinizi senkronize etmek için yapılandırın."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Uygulama genelinde tarihlerin nasıl görüntüleneceğini yapılandırın"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "E-posta ve takvim ayarlarınızı yapılandırın."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Onayla"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "{roleName} rolünü silmeyi onaylıyor musunuz? Bu geri alınamaz. Tüm üyeler varsayılan role yeniden atanacak."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Bağlam"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kredi Planı"
msgid "Credit Usage"
msgstr "Kredi Kullanımı"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Kullanılan Krediler"
msgid "currencies"
msgstr "para birimleri"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Özel alan adı güncellendi"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Özel nesneler"
@@ -2096,6 +2025,11 @@ msgstr "Veritabanı yapılandırması şu anda devre dışı."
msgid "Date"
msgstr "Tarih"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Tarih ve saat"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Team@ support@ noreply@... adreslerinden e-postaları senkronize etme...
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Ödeme yöntemini düzenleyin, faturalarınızı görün ve daha fazlası"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "E-posta panoya kopyalandı"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "E-posta entegrasyonu"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Parolanızla birlikte bir kod gerektirerek güvenliği artırır"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "{withCreditCardTrialPeriodDuration} gün süresince ücretsiz deneme süresinin tadını çıkarın"
@@ -2916,35 +2844,20 @@ msgstr "Rol güncellenirken hata oluştu"
msgid "Error validating approved access domain"
msgstr "Onaylı erişim alanı doğrulanırken hata oluştu"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Deneme süresi sona erdirilirken hata oluştu. Lütfen Twenty ekibiyle iletişime geçin."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Abonelik Kuruluş Planına değiştirilirken hata oluştu."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Abonelik yıllığa değiştirilirken hata."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Biçim"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Format örn. d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Fransızca"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Tam erişim"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Ekibinizi davet ederek çalışma alanınızdan en iyi şekilde yararlanın."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Aboneliğinizi alın"
@@ -3798,11 +3706,6 @@ msgstr "Entegrasyonlar - Ayarlar"
msgid "Interact with your workspace data"
msgstr "Çalışma alanı verileriyle etkileşim kurma"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Yükleniyor..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "API anahtarlarını ve webhook'ları yönetin"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Fatura bilgilerini yönet"
@@ -4388,11 +4291,6 @@ msgstr "Meta veri"
msgid "Metadata file generation failed"
msgstr "Metadata dosyası oluşturulamadı"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "E-posta senkronizasyon işinizin yürütülmesini izleyin"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "ay"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "aylık"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Yeni SSO sağlayıcısı"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Sonraki"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Veya"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Kuruluş"
@@ -5141,6 +5037,11 @@ msgstr "Kuruluş"
msgid "Other"
msgstr "Diğer"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Resim"
msgid "Plan"
msgstr "Plan"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Gizlilik Politikası"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Pro"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Tek Oturum Açma"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Abonelik"
msgid "Subscription activated."
msgstr "Abonelik etkinleştirildi."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Abonelik Kuruluş Planına geçirildi."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Abonelik yıllık olarak değiştirildi."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Destek"
msgid "Swedish"
msgstr "İsveççe"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Kuruluşa Geç"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Bu değer veritabanına kaydedilecek."
msgid "This week"
msgstr "Bu hafta"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "{intervalLabel} iş akışı kredi tüketiminizi takip edin."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Deneme"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Bilinmeyen hata"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Sınırsız kişilerle iletişim"
@@ -7145,12 +7015,6 @@ msgstr "Temsilci bilgilerini güncelle"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Hesap yapılandırmanızı güncelleyin. Gerektiği şekilde IMAP, SMTP ve CalDAV'ın herhangi bir kombinasyonunu yapılandırın."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Görünüm"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Fatura detaylarını görüntüle"
@@ -7548,12 +7412,12 @@ msgstr "Bu temsilci için bir açıklama yazın"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "yıl"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "yıllık"
@@ -7603,30 +7467,20 @@ msgstr ""
"Bağlantıyı düzenleyemezsiniz çünkü izlendiğini tablolara sahiptir.\n"
"Değişiklik yapmanız gerekiyorsa, lütfen yeni bir bağlantı oluşturun veya önce tabloların eşzamanlılığını kaldırın."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Ödemeler yıllık olarak fatura edilir ve ${enterprisePrice} kullanıcı başına aylık ücret alınır."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Kullanıcı başına aylık ${enterprisePrice} ücret alınacaktır."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Ödemeler yıllık olarak fatura edilir ve kullanıcı başına aylık ${yearlyPrice} ücret alınır. Mevcut aboneliğinizle orantılı bir ödeme uygulanacaktır."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Görüntülenecek adınız"
msgid "Your name as it will be displayed on the app"
msgstr "Uygulamada görüntülenecek adınız"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Çalışma alanınızın aktif bir aboneliği yok. Lütfen yöneticinizle iletişime geçin."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Çalışma alanınız devre dışı bırakılacak"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Минуле"
msgid ": Today"
msgstr "Сьогодні"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} файл(и) не вдалося завантажити"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} із {formattedRecordsToImportCount} записів імпортовано."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Тип"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10 000 виконань вузлів робочого процесу"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Встановіть дозволи для {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20 000 виконань вузлів робочого процесу"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API та Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Чорний список"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Запланувати дзвінок"
@@ -1212,43 +1206,13 @@ msgstr "Не можете сканувати? Скопіюйте"
msgid "Cancel"
msgstr "Скасувати"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Скасувати план"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Скасувати підписку"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Змінити пароль"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Змінити план"
@@ -1289,21 +1253,11 @@ msgstr "Змінити план"
msgid "Change subdomain?"
msgstr "Установити новий піддомен?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Змінити на план «Організація»?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Китайська — традиційна"
msgid "Choose a Workspace"
msgstr "Виберіть робочий простір"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Оберіть формат для відображення значення дати"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Виберіть вашу пробну версію"
@@ -1521,10 +1480,10 @@ msgstr "Налаштувати та настроїти уподобання ва
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Налаштуйте параметри CalDAV для синхронізації ваших подій календаря."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Налаштуйте відображення дат у додатку"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Налаштуйте налаштування електронної п
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Підтвердити"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Підтвердьте видалення ролі {roleName}? Це не можна скасувати. Всі учасники будуть перепризначені на роль за замовчуванням."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Контекст"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "План кредитування"
msgid "Credit Usage"
msgstr "Використання кредитів"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Використано кредити"
msgid "currencies"
msgstr "валюти"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Користувацький домен оновлено"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Користувацькі об'єкти"
@@ -2096,6 +2025,11 @@ msgstr "Конфігурація бази даних наразі вимкнен
msgid "Date"
msgstr "Дата"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Дата та час"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Не синхронізувати електронні листи з tea
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Редагувати спосіб оплати, переглядати свої рахунки та більше"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Електронна пошта скопійована в буфер обміну"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Інтеграція електронної пошти"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Покращує безпеку, вимагаючи введення коду разом із вашим паролем"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Насолоджуйтеся {withCreditCardTrialPeriodDuration}-денним безкоштовним пробним періодом"
@@ -2916,35 +2844,20 @@ msgstr "Помилка оновлення ролі"
msgid "Error validating approved access domain"
msgstr "Помилка перевірки затвердженого домену доступу"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Помилка під час завершення пробного періоду. Будь ласка, звʼяжіться з командою Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Помилка під час переходу на підписку «Організація»."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Помилка під час переходу на підписку на рік."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Формат"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Формат, напр. д-MMM-р (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "Французька"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "Повний доступ"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Отримайте максимум від свого робочого простору, запросивши свою команду."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "Отримайте свою передплату"
@@ -3798,11 +3706,6 @@ msgstr "Інтеграції - Налаштування"
msgid "Interact with your workspace data"
msgstr "Взаємодія з даними вашого робочого простору"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Завантаження..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Керувати API ключами та webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Керування платіжною інформацією"
@@ -4388,11 +4291,6 @@ msgstr "Метадані"
msgid "Metadata file generation failed"
msgstr "Не вдалося згенерувати файл метаданих"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Нагляд за виконанням вашого завдання з синхронізації електронних листів"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "місяць"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "щомісяця"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Новий провайдер єдиної системи входу"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Далі"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Або"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Організація"
@@ -5141,6 +5037,11 @@ msgstr "Організація"
msgid "Other"
msgstr "Інший"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Зображення"
msgid "Plan"
msgstr "План"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Політика конфіденційності"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Професіонал"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Єдиний вхід"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Підписка"
msgid "Subscription activated."
msgstr "Підписка активована."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Перехід на підписку «Організація» здійснено."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Перехід на передплату <b>на рік</b> здійснено."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Підтримка"
msgid "Swedish"
msgstr "Шведська"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Перехід до організації"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Це значення буде збережено в базі даних
msgid "This week"
msgstr "Цього тижня"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Відстежуйте споживання кредитів у робочих процесах за {intervalLabel}."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Випробування"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Невідома помилка"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Необмежена кількість контактів"
@@ -7145,12 +7015,6 @@ msgstr "Оновити інформацію про агента"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Оновіть конфігурацію вашого облікового запису. Налаштуйте будь-яку комбінацію IMAP, SMTP та CalDAV за потреби."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Перегляд"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Переглянути деталі оплати"
@@ -7548,12 +7412,12 @@ msgstr "Напишіть опис для цього агента"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "рік"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "щорічно"
@@ -7603,30 +7467,20 @@ msgstr ""
"Ви не можете редагувати це з'єднання, тому що воно має відстежувані таблиці.\n"
"Якщо вам потрібно внести зміни, створіть нове з'єднання або спочатку відключіть таблиці."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Ви будете платити ${enterprisePrice} за кожного користувача на місяць, оплачуючи щороку."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Ви будете платити ${enterprisePrice} за кожного користувача в місяць."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Ви будете платити ${yearlyPrice} за кожного користувача в місяць, оплачуючи щороку. Буде застосовано пропорційну знижку з вашою поточною підпискою."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Ваше ім'я, як воно буде відображатися"
msgid "Your name as it will be displayed on the app"
msgstr "Ваше ім'я, як воно буде відображатися в додатку"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "У вашому робочому просторі немає активної підписки. Будь ласка, зв'яжіться з вашим адміністратором."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Ваш робочий простір буде вимкнено"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": Quá khứ"
msgid ": Today"
msgstr ": Hôm nay"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} tệp không tải lên được"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "{formattedCreatedRecordsProgress} trong tổng số {formattedRecordsToImportCount} bản ghi đã được nhập."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}USD"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. Loại"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10.000 lượt thực thi nút quy trình công việc"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. Thiết lập quyền {objectLabelPlural}"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20.000 lượt thực thi nút quy trình công việc"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API & Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "Danh sách chặn"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "Đặt lịch cuộc gọi"
@@ -1212,43 +1206,13 @@ msgstr "Không thể quét? Sao chép"
msgid "Cancel"
msgstr "Hủy bỏ"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "Hủy Kế hoạch"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "Hủy đăng ký của bạn"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "Đổi Mật khẩu"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "Thay đổi kế hoạch"
@@ -1289,21 +1253,11 @@ msgstr "Thay đổi kế hoạch"
msgid "Change subdomain?"
msgstr "Đổi tên miền phụ?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "Chuyển đổi sang Gói Tổ chức?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "Tiếng Trung — Phồn thể"
msgid "Choose a Workspace"
msgstr "Chọn một không gian làm việc"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "Chọn định dạng dùng để hiển thị giá trị ngày"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "Chọn Gói dùng thử của bạn"
@@ -1521,10 +1480,10 @@ msgstr "Cấu hình và tùy chỉnh các tùy chọn lịch của bạn."
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "Cấu hình cài đặt CalDAV để đồng bộ sự kiện lịch của bạn."
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "Cấu hình cách hiển thị ngày tháng trong ứng dụng"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "Cấu hình cài đặt email và lịch của bạn."
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "Xác nhận"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "Xác nhận xóa vai trò {roleName}? Điều này không thể hoàn tác. Tất cả thành viên sẽ được chuyển sang vai trò mặc định."
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "Ngữ cảnh"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "Kế hoạch tín dụng"
msgid "Credit Usage"
msgstr "Sử dụng tín dụng"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "Tín dụng đã sử dụng"
msgid "currencies"
msgstr "tiền tệ"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "Tên miền tùy chỉnh đã được cập nhật"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "Đối tượng tùy chỉnh"
@@ -2096,6 +2025,11 @@ msgstr "Cấu hình cơ sở dữ liệu hiện đang bị vô hiệu hóa."
msgid "Date"
msgstr "Ngày"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "Ngày và giờ"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "Không đồng bộ email từ team@ support@ noreply@..."
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "Chỉnh sửa phương pháp thanh toán, xem hóa đơn của bạn và nhiều hơn nữa"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "Đã sao chép email vào bảng tạm"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "Tích hợp Email"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "Tăng cường bảo mật bằng cách yêu cầu mã cùng với mật khẩu của bạn"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Tận hưởng {withCreditCardTrialPeriodDuration} ngày dùng thử miễn phí"
@@ -2916,35 +2844,20 @@ msgstr "Lỗi khi cập nhật vai trò"
msgid "Error validating approved access domain"
msgstr "Lỗi xác thực tên miền truy cập đã được phê duyệt"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "Lỗi khi kết thúc giai đoạn dùng thử. Vui lòng liên hệ nhóm Twenty."
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "Lỗi khi chuyển đổi đăng ký sang Gói Tổ chức."
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "Lỗi khi chuyển đổi đăng ký sang hàng năm."
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "Định dạng"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "Định dạng ví dụ: d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "\\"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "\\"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "Tối ưu hóa không gian làm việc của bạn bằng cách mời team của bạn tham gia."
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "\\"
@@ -3798,11 +3706,6 @@ msgstr "Cài đặt - Tích hợp"
msgid "Interact with your workspace data"
msgstr "Tương tác với dữ liệu không gian làm việc của bạn"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "Đang tải..."
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "Quản lý khóa API và webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "Quản lý thông tin thanh toán"
@@ -4388,11 +4291,6 @@ msgstr "Siêu dữ liệu"
msgid "Metadata file generation failed"
msgstr "Tạo tập tin Metadata thất bại"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "Giám sát việc thực thi công việc đồng bộ email của bạn"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "tháng"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "hàng tháng"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "Nhà cung cấp SSO mới"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "Tiếp theo"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "Hoặc"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "Tổ chức"
@@ -5141,6 +5037,11 @@ msgstr "Tổ chức"
msgid "Other"
msgstr "Khác"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "Hình ảnh"
msgid "Plan"
msgstr "Gói"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "Chính sách Bảo mật"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "Chuyên nghiệp"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "Đăng nhập một lần"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "Đăng ký"
msgid "Subscription activated."
msgstr "Đã kích hoạt đăng ký."
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "Gói đăng ký đã được chuyển đổi sang Gói Tổ chức."
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "Gói đăng ký đã được chuyển đổi sang hàng năm."
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "Hỗ trợ"
msgid "Swedish"
msgstr "Tiếng Thụy Điển"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "Chuyển sang Tổ chức"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "Giá trị này sẽ được lưu vào cơ sở dữ liệu."
msgid "This week"
msgstr "Tuần này"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "Theo dõi sự tiêu thụ tín dụng workflow {intervalLabel} của bạn."
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "Dùng thử"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "Lỗi không xác định"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "Liên hệ không giới hạn"
@@ -7145,12 +7015,6 @@ msgstr "Cập nhật thông tin tác nhân"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "Cập nhật cấu hình tài khoản của bạn. Cấu hình bất kỳ sự kết hợp nào của IMAP, SMTP và CalDAV theo nhu cầu."
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "Xem"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "Xem chi tiết hóa đơn"
@@ -7548,12 +7412,12 @@ msgstr "Viết mô tả cho tác nhân này"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "năm"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "hàng năm"
@@ -7603,30 +7467,20 @@ msgstr ""
"Bạn không thể chỉnh sửa kết nối này vì nó có các bảng đang theo dõi.\n"
"Nếu bạn cần thực hiện thay đổi, vui lòng tạo một kết nối mới hoặc hủy đồng bộ các bảng trước."
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "Bạn sẽ bị tính phí ${enterprisePrice} mỗi người dùng mỗi tháng, thanh toán hàng năm."
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "Bạn sẽ bị tính phí ${enterprisePrice} mỗi người dùng mỗi tháng."
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "Bạn sẽ bị tính phí ${yearlyPrice} mỗi người dùng mỗi tháng, thanh toán hàng năm. Một phần tỷ lệ với gói đăng ký hiện tại của bạn sẽ được áp dụng."
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "Tên của bạn sẽ được hiển thị như thế nào"
msgid "Your name as it will be displayed on the app"
msgstr "Tên của bạn sẽ được hiển thị như thế nào trên ứng dụng"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "Không gian làm việc của bạn không có đăng ký hoạt động. Vui lòng liên hệ quản trị viên của bạn."
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "Không gian làm việc của bạn sẽ bị vô hiệu hóa"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ":过去"
msgid ": Today"
msgstr ": 今天"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} 个文件上传失败"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "已导入 {formattedCreatedRecordsProgress} (共{formattedRecordsToImportCount}) 条记录."
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. 类型"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10,000 次工作流节点执行"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. 设置{objectLabelPlural}权限"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20,000 次工作流节点执行"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "接口"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API 和 Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "拦截列表"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "预约电话"
@@ -1212,43 +1206,13 @@ msgstr "无法扫描?复制"
msgid "Cancel"
msgstr "取消"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "取消计划"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "取消订阅"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "更改密码"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "更改计划"
@@ -1289,21 +1253,11 @@ msgstr "更改计划"
msgid "Change subdomain?"
msgstr "更改子域名?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "更改为组织计划吗?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "繁体中文"
msgid "Choose a Workspace"
msgstr "选择工作区"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "选择用于显示日期值的格式"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "选择试用"
@@ -1521,10 +1480,10 @@ msgstr "配置和自定义日历偏好。"
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "配置 CalDAV 设置以同步您的日历事件。"
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "配置应用程序中的日期显示方式"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "配置电子邮件和日历设置。"
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "确认"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "确认删除 {roleName} 角色?此操作无法撤销。所有成员将被重新分配到默认角色。"
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "上下文"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "信用计划"
msgid "Credit Usage"
msgstr "信用使用情况"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "使用的积分"
msgid "currencies"
msgstr "货币"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "自定义域已更新"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "自定义对象"
@@ -2096,6 +2025,11 @@ msgstr "数据库配置当前已禁用。"
msgid "Date"
msgstr "日期"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "日期和时间"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "不要同步来自 team@、support@、noreply@ 的电子邮件……"
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "编辑付款方式、查看发票等"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "电子邮件已复制到剪贴板"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "电子邮件集成"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "通过要求使用代码和密码来增强安全性"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "享受 {withCreditCardTrialPeriodDuration} 天的免费试用期"
@@ -2916,35 +2844,20 @@ msgstr "更新角色时出错"
msgid "Error validating approved access domain"
msgstr "验证批准的访问域时出错"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "结束试用期时发生错误。请联系Twenty团队。"
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "切换订阅到组织计划时出错。"
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "切换订阅到年度计划时出错。"
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "格式"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "格式如d-MMM-yqqq''yy"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "法语"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "完全访问"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "邀请您的团队,充分利用您的工作区。"
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "获取订阅"
@@ -3798,11 +3706,6 @@ msgstr "集成 - 设置"
msgid "Interact with your workspace data"
msgstr "与您的工作区数据互动"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "加载中……"
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "管理 API 密钥和 webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "管理账单信息"
@@ -4388,11 +4291,6 @@ msgstr "元数据"
msgid "Metadata file generation failed"
msgstr "元数据文件生成失败"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "监控您的电子邮件同步作业的执行"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "月"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "每月"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "新 SSO 提供商"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "下一个"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "或"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "组织"
@@ -5141,6 +5037,11 @@ msgstr "组织"
msgid "Other"
msgstr "其他"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "图片"
msgid "Plan"
msgstr "计划"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "隐私政策"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "专业版"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "SSO"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "SSO (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "订阅"
msgid "Subscription activated."
msgstr "订阅已激活。"
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "订阅已切换为组织计划。"
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "订阅已切换为年度计划。"
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "支持"
msgid "Swedish"
msgstr "瑞典语"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "切换到组织计划"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "此值将保存到数据库。"
msgid "This week"
msgstr "本周"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "追踪您的{intervalLabel}工作流程积分消耗。"
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "试用"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "未知错误"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "无限联系人"
@@ -7145,12 +7015,6 @@ msgstr "更新代理信息"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "更新您的账户配置。根据需要配置 IMAP、SMTP 和 CalDAV 的任意组合。"
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "视图"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "查看账单详情"
@@ -7548,12 +7412,12 @@ msgstr "为此代理撰写描述"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "年"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "年度计划"
@@ -7603,30 +7467,20 @@ msgstr ""
"您不能编辑此连接,因为它具有跟踪表。\n"
"如果您需要进行更改,请创建新连接或首先取消同步表。"
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "每月将按照每用户 ${enterprisePrice} 收费,按年结算。"
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "每月将按照每用户 ${enterprisePrice} 收费。"
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "每月将按照每用户 ${yearlyPrice} 收费,按年结算。将应用现有订阅的按比例计划调整。"
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "显示的姓名"
msgid "Your name as it will be displayed on the app"
msgstr "您在应用上显示的姓名"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "您的工作区没有有效的订阅。请联系您的管理员。"
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "您的工作区将被禁用"
+76 -232
View File
@@ -18,12 +18,6 @@ msgstr ""
"X-Crowdin-File: /packages/twenty-front/src/locales/en.po\n"
"X-Crowdin-File-ID: 29\n"
#. js-lingui-id: lndIq/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/hooks/useBillingWording.ts
msgid " billed annually"
msgstr ""
#. js-lingui-id: /8h/VA
#: src/modules/object-record/spreadsheet-import/utils/getSpreadSheetFieldValidationDefinitions.ts
msgid " must be one of {ratingValues} values"
@@ -69,11 +63,6 @@ msgstr ": 過去"
msgid ": Today"
msgstr ": 今天"
#. js-lingui-id: N/lIUf
#: src/modules/billing/hooks/useBillingWording.ts
msgid ". The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: 4tCM3o
#: src/modules/views/components/ViewBarFilterDropdownVectorSearchButton.tsx
#: src/modules/views/components/ViewBarFilterDropdownAnyFieldSearchButtonMenuItem.tsx
@@ -124,6 +113,11 @@ msgstr "{failedCount} 個檔案上傳失敗"
msgid "{formattedCreatedRecordsProgress} out of {formattedRecordsToImportCount} records imported."
msgstr "已匯入 {formattedCreatedRecordsProgress} 筆資料,共 {formattedRecordsToImportCount} 筆待匯入資料。"
#. js-lingui-id: J2Vio9
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "{nickname} - {price}$"
msgstr "{nickname} - {price}$"
#. js-lingui-id: OeIgEg
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelOverrideCell.tsx
msgid "{roleLabel} can {humanReadableAction} {objectLabel} records"
@@ -168,7 +162,7 @@ msgid "1. Type"
msgstr "1. 類型"
#. js-lingui-id: 7IIx+y
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "10,000 workflow node executions"
msgstr "10,000 次工作流程節點執行"
@@ -199,7 +193,7 @@ msgid "2. Set {objectLabelPlural} permissions"
msgstr "2. 設定{objectLabelPlural}權限"
#. js-lingui-id: YfwnsU
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "20,000 workflow node executions"
msgstr "20,000 次工作流程節點執行"
@@ -766,8 +760,8 @@ msgid "API"
msgstr "API"
#. js-lingui-id: 0RqpZr
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "API & Webhooks"
msgstr "API 和 Webhooks"
@@ -1084,7 +1078,7 @@ msgid "Blocklist"
msgstr "阻止列表"
#. js-lingui-id: 2yl5lQ
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Book a Call"
msgstr "預約電話"
@@ -1212,43 +1206,13 @@ msgstr "無法掃描? 複製"
msgid "Cancel"
msgstr "取消"
#. js-lingui-id: dV4HC5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching"
msgstr ""
#. js-lingui-id: M5CqkG
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel interval switching?"
msgstr ""
#. js-lingui-id: /Dmw1h
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching"
msgstr ""
#. js-lingui-id: Q/chGD
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel metered tier switching?"
msgstr ""
#. js-lingui-id: rRK/Lf
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel Plan"
msgstr "取消計劃"
#. js-lingui-id: 8eSMLX
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching"
msgstr ""
#. js-lingui-id: f6KFEf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Cancel plan switching?"
msgstr ""
#. js-lingui-id: N6gPiD
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Cancel your subscription"
msgstr "取消訂閱"
@@ -1280,7 +1244,7 @@ msgid "Change Password"
msgstr "更改密碼"
#. js-lingui-id: wRtBJP
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Change Plan"
msgstr "更改計劃"
@@ -1289,21 +1253,11 @@ msgstr "更改計劃"
msgid "Change subdomain?"
msgstr "更換子域名?"
#. js-lingui-id: 9m7pJA
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Monthly?"
msgstr ""
#. js-lingui-id: C8G9Mq
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Organization Plan?"
msgstr "更改為組織方案?"
#. js-lingui-id: t7uUc+
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Pro Plan?"
msgstr ""
#. js-lingui-id: N8mUQE
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Change to Yearly?"
@@ -1344,6 +1298,11 @@ msgstr "繁體中文"
msgid "Choose a Workspace"
msgstr "選擇一個工作區"
#. js-lingui-id: ub6oFI
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Choose additional formatting preferences"
msgstr ""
#. js-lingui-id: Qz73jD
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
msgid "Choose between OIDC and SAML protocols"
@@ -1370,7 +1329,7 @@ msgid "Choose the format used to display date value"
msgstr "選擇用于顯示日期值的格式"
#. js-lingui-id: 9qP96p
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Choose your Trial"
msgstr "選擇試用"
@@ -1521,10 +1480,10 @@ msgstr "配置和自定義日曆偏好。"
msgid "Configure CalDAV settings to sync your calendar events."
msgstr "配置 CalDAV 設定以同步您的日曆事件。"
#. js-lingui-id: ahqAfe
#. js-lingui-id: aGwm+D
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Configure date, time, number, timezone, and calendar start day"
msgstr ""
msgid "Configure how dates are displayed across the app"
msgstr "配置應用程序中日期的顯示方式"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
@@ -1563,34 +1522,14 @@ msgstr "配置您的電子郵件和日曆設置。"
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Confirm"
msgstr "確認"
#. js-lingui-id: qmnX/6
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm changing your current credit plan."
msgstr ""
#. js-lingui-id: FbJ7Si
#: src/modules/settings/roles/role-settings/components/SettingsRoleSettingsDeleteRoleConfirmationModalSubtitle.tsx
msgid "Confirm deletion of {roleName} role? This cannot be undone. All members will be reassigned to the default role."
msgstr "確認刪除 {roleName} 角色?此操作無法撤銷。所有成員將被重新分配到預設角色。"
#. js-lingui-id: kZkFSm
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm downgrade"
msgstr ""
#. js-lingui-id: DDbn3x
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Confirm upgrade"
msgstr ""
#. js-lingui-id: D8ATlr
#: src/modules/settings/accounts/components/SettingsNewAccountSection.tsx
msgid "Connect a new account to your workspace"
@@ -1652,7 +1591,7 @@ msgstr "上下文"
#: src/pages/onboarding/InviteTeam.tsx
#: src/pages/onboarding/CreateWorkspace.tsx
#: src/pages/onboarding/CreateProfile.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
@@ -1939,11 +1878,6 @@ msgstr "信用計劃"
msgid "Credit Usage"
msgstr "信用使用"
#. js-lingui-id: hdSacI
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Credits by period"
msgstr ""
#. js-lingui-id: n3kKrs
#: src/modules/billing/components/SettingsBillingCreditsSection.tsx
msgid "Credits Used"
@@ -1954,11 +1888,6 @@ msgstr "使用的免費積分"
msgid "currencies"
msgstr "貨幣"
#. js-lingui-id: Hp1l6f
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
msgid "Current"
msgstr ""
#. js-lingui-id: 6YzXhC
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
msgid "Current value from server environment. Set a custom value to override."
@@ -1986,8 +1915,8 @@ msgid "Custom domain updated"
msgstr "自訂網域已更新"
#. js-lingui-id: 8skTDV
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Custom objects"
msgstr "自定義對象"
@@ -2096,6 +2025,11 @@ msgstr "數據庫配置目前已禁用。"
msgid "Date"
msgstr "日期"
#. js-lingui-id: Ud9zHv
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Date and time"
msgstr "日期和時間"
#. js-lingui-id: QIIAIQ
#: src/modules/views/view-picker/components/ViewPickerContentCreateMode.tsx
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
@@ -2517,12 +2451,6 @@ msgstr "不要從 team@ support@ noreply@... 同步電子郵件……"
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Downgrade"
msgstr ""
#. js-lingui-id: WcWS//
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Download file"
@@ -2628,7 +2556,7 @@ msgid "Edit iFrame"
msgstr ""
#. js-lingui-id: h2KoTu
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Edit payment method, see your invoices and more"
msgstr "編輯付款方式、查看發票等"
@@ -2679,8 +2607,8 @@ msgid "Email copied to clipboard"
msgstr "電子郵件已複製到剪貼板"
#. js-lingui-id: lfQsvW
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Email integration"
msgstr "電子郵件集成"
@@ -2796,7 +2724,7 @@ msgid "Enhances security by requiring a code along with your password"
msgstr "增強安全性,除了密碼外還需要輸入代碼"
#. js-lingui-id: /bfFKe
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "享受 {withCreditCardTrialPeriodDuration} 天的免費試用期"
@@ -2916,35 +2844,20 @@ msgstr "更新角色時出錯"
msgid "Error validating approved access domain"
msgstr "驗證核准訪問域名時出錯"
#. js-lingui-id: pt7mmi
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling interval switching."
msgstr ""
#. js-lingui-id: a1gs9Y
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling metered tier switching."
msgstr ""
#. js-lingui-id: FS6DQK
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while cancelling plan switching."
msgstr ""
#. js-lingui-id: QmR+2U
#: src/modules/billing/hooks/useEndSubscriptionTrialPeriod.ts
msgid "Error while ending trial period. Please contact Twenty team."
msgstr "結束試用期時發生錯誤。請聯繫Twenty團隊。"
#. js-lingui-id: QEee5f
#. js-lingui-id: JKNROf
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription to {oppositPlan} Plan."
msgstr ""
msgid "Error while switching subscription to Organization Plan."
msgstr "切換訂閱至組織方案時出錯。"
#. js-lingui-id: QPJi2W
#. js-lingui-id: ENV7jU
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Error while switching subscription."
msgstr ""
msgid "Error while switching subscription to Yearly."
msgstr "切換訂閱至年度時出錯。"
#. js-lingui-id: JLxMta
#: src/pages/settings/workspace/SettingsApiWebhooks.tsx
@@ -3344,11 +3257,6 @@ msgstr "格式"
msgid "Format e.g. d-MMM-y (qqq''yy)"
msgstr "格式 例如: d-MMM-y (qqq''yy)"
#. js-lingui-id: 4JsQoY
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Formats"
msgstr ""
#. js-lingui-id: a8nooQ
#: src/modules/object-record/record-merge/utils/getPositionWordLabel.ts
msgid "Fourth"
@@ -3360,8 +3268,8 @@ msgid "French"
msgstr "法語"
#. js-lingui-id: scmRyR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Full access"
msgstr "完全訪問"
@@ -3399,7 +3307,7 @@ msgid "Get the most out of your workspace by inviting your team."
msgstr "邀請您的團隊,充分利用您的工作區。"
#. js-lingui-id: zSGbaR
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Get your subscription"
msgstr "獲取訂閱"
@@ -3798,11 +3706,6 @@ msgstr "整合 - 設定"
msgid "Interact with your workspace data"
msgstr "與您的工作空間數據互動"
#. js-lingui-id: jyjroS
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Interval switching has been cancelled."
msgstr ""
#. js-lingui-id: ggS/0k
#: src/modules/settings/two-factor-authentication/components/DeleteTwoFactorAuthenticationMethod.tsx
msgid "Invalid 2FA information."
@@ -4216,7 +4119,7 @@ msgid "Loading..."
msgstr "載入中……"
#. js-lingui-id: FgAxTj
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
#: src/modules/auth/sign-in-up/components/SignInUpGlobalScopeForm.tsx
msgid "Log out"
@@ -4258,7 +4161,7 @@ msgid "Manage API keys and webhooks"
msgstr "管理 API 金鑰和 Webhooks"
#. js-lingui-id: nvgUPq
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Manage billing information"
msgstr "管理帳單資訊"
@@ -4388,11 +4291,6 @@ msgstr "元數據"
msgid "Metadata file generation failed"
msgstr "元數據文件生成失敗"
#. js-lingui-id: onCJJ6
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Metered tier switching has been cancelled."
msgstr ""
#. js-lingui-id: eTUF28
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationShortLabel.ts
#: src/modules/object-record/record-board/record-board-column/utils/getAggregateOperationLabel.ts
@@ -4420,7 +4318,7 @@ msgid "Monitor the execution of your emails sync job"
msgstr "監控您的電子郵件同步工作執行情況"
#. js-lingui-id: kY2ll9
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "month"
msgstr "月"
@@ -4432,7 +4330,7 @@ msgid "Month"
msgstr ""
#. js-lingui-id: rdfE9o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "monthly"
msgstr "每月"
@@ -4661,7 +4559,6 @@ msgid "New SSO provider"
msgstr "新的 SSO 提供者"
#. js-lingui-id: hXzOVo
#: src/modules/billing/components/internal/SubscriptionInfoRowContainer.tsx
#: src/modules/auth/sign-in-up/components/internal/SignInUpTwoFactorAuthenticationProvision.tsx
msgid "Next"
msgstr "下一步"
@@ -5127,8 +5024,7 @@ msgid "Or"
msgstr "或"
#. js-lingui-id: ucgZ0o
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Organization"
msgstr "組織"
@@ -5141,6 +5037,11 @@ msgstr "組織"
msgid "Other"
msgstr "其他"
#. js-lingui-id: vPKFXl
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
msgid "Other formats"
msgstr ""
#. js-lingui-id: +vDFPm
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownWorkspacesListComponents.tsx
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
@@ -5282,11 +5183,6 @@ msgstr "圖片"
msgid "Plan"
msgstr "方案"
#. js-lingui-id: XduPHC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Plan switching has been cancelled."
msgstr ""
#. js-lingui-id: 90/XJz
#: src/pages/settings/security/SettingsSecurityApprovedAccessDomain.tsx
msgid "Please check your email for a verification link."
@@ -5386,8 +5282,7 @@ msgid "Privacy Policy"
msgstr "隱私政策"
#. js-lingui-id: 3fPjUY
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Pro"
msgstr "專業版"
@@ -6431,7 +6326,7 @@ msgid "SSO"
msgstr "單點登錄"
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "SSO (SAML / OIDC)"
msgstr "單一登入系統 (SAML / OIDC)"
@@ -6540,21 +6435,16 @@ msgstr "訂閱"
msgid "Subscription activated."
msgstr "訂閱已啟動。"
#. js-lingui-id: gvXPJz
#. js-lingui-id: KNMVB5
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to {oppositPlan} Plan."
msgstr ""
msgid "Subscription has been switched to Organization Plan."
msgstr "訂閱已切換至組織方案。"
#. js-lingui-id: A5YO8f
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription has been switched to Yearly."
msgstr "訂閱已切換至年度。"
#. js-lingui-id: nQcG+x
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Subscription will be switch to Monthly the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: OjK1bU
#: src/modules/object-record/record-merge/hooks/useMergeRecordsActions.ts
msgid "Successfully merged {recordCount} records"
@@ -6586,21 +6476,11 @@ msgstr "支援"
msgid "Swedish"
msgstr "瑞典語"
#. js-lingui-id: dpXnFC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Monthly"
msgstr ""
#. js-lingui-id: GCMizN
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Organization"
msgstr "切換至組織"
#. js-lingui-id: GPKudC
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Pro"
msgstr ""
#. js-lingui-id: eCX1DT
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Switch to Yearly"
@@ -6906,16 +6786,6 @@ msgstr "此值將保存到資料庫中。"
msgid "This week"
msgstr "本週"
#. js-lingui-id: h4VeOo
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled interval change and keep your current billing interval ({currentIntervalLabel})."
msgstr ""
#. js-lingui-id: XpARoU
#: src/modules/billing/hooks/useBillingWording.ts
msgid "This will cancel the scheduled plan change and keep your current plan ({planKeyWord})."
msgstr ""
#. js-lingui-id: 4YifBe
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
msgid "This will revert the database value to environment/default value. The database override will be removed and the system will use the environment settings."
@@ -6976,7 +6846,7 @@ msgid "Track your {intervalLabel} workflow credit consumption."
msgstr "追踪您的 {intervalLabel} 工作流信用消耗。"
#. js-lingui-id: lhkaAC
#: src/modules/billing/components/internal/PlansTags.tsx
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "Trial"
msgstr "試用"
@@ -7104,8 +6974,8 @@ msgid "Unknown error"
msgstr "未知錯誤"
#. js-lingui-id: GQCXQS
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
#: src/pages/onboarding/ChooseYourPlan.tsx
msgid "Unlimited contacts"
msgstr "無限聯繫人"
@@ -7145,12 +7015,6 @@ msgstr "更新代理信息"
msgid "Update your account's configuration. Configure any combination of IMAP, SMTP, and CalDAV as needed."
msgstr "更新您的帳戶配置。根據需要配置任何 IMAP、SMTP 和 CalDAV 的組合。"
#. js-lingui-id: kwkhPe
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
#: src/modules/billing/components/internal/MeteredPriceSelector.tsx
msgid "Upgrade"
msgstr ""
#. js-lingui-id: ONWvwQ
#: src/modules/ui/input/components/ImageInput.tsx
msgid "Upload"
@@ -7312,7 +7176,7 @@ msgid "View"
msgstr "視圖"
#. js-lingui-id: KANz0G
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "View billing details"
msgstr "查看計費詳情"
@@ -7548,12 +7412,12 @@ msgstr "為此代理撰寫描述"
#. js-lingui-id: 7qI8sJ
#: src/utils/date-utils.ts
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "year"
msgstr "年"
#. js-lingui-id: dfmB8/
#: src/modules/billing/hooks/useBillingWording.ts
#: src/modules/billing/utils/subscriptionFlags.ts
msgid "yearly"
msgstr "年度"
@@ -7603,30 +7467,20 @@ msgstr ""
"您無法編輯此連接,因為它有跟蹤的表格。\n"
"如果您需要更改,請創建新的連接或先取消同步表格。"
#. js-lingui-id: M2lYgq
#. js-lingui-id: zEM7Ne
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You have scheduled a metered tier change. Do you want to cancel it?"
msgstr ""
msgid "You will be charged ${enterprisePrice} per user per month billed annually."
msgstr "每位用戶每月將收取 ${enterprisePrice},按年度結算。"
#. js-lingui-id: z8eKS7
#: src/modules/billing/hooks/useBillingWording.ts
msgid "you will be charged ${enterprisePrice} per user per month"
msgstr ""
#. js-lingui-id: HM4D8s
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${enterprisePrice} per user per month."
msgstr "每位用戶每月將收取 ${enterprisePrice}。"
#. js-lingui-id: u3S6u8
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${monthlyPrice} per user per month billed monthly. The change will be applied the {beautifiedRenewDate}."
msgstr ""
#. js-lingui-id: /T5zAB
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${proPrice} per user per month"
msgstr ""
#. js-lingui-id: W3k5LA
#: src/modules/billing/hooks/useBillingWording.ts
msgid "You will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: o4xIH4
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
msgid "You will be charged ${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied."
msgstr "每位用戶每月將收取 ${yearlyPrice},按年度結算。將應用與當前訂閱的比例定價。"
#. js-lingui-id: C2d+Xk
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
@@ -7663,16 +7517,6 @@ msgstr "顯示您的姓名"
msgid "Your name as it will be displayed on the app"
msgstr "您的名字將如何在應用程式上顯示"
#. js-lingui-id: QOd24n
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and "
msgstr ""
#. js-lingui-id: 2Fkd7s
#: src/modules/billing/hooks/useBillingWording.ts
msgid "Your trial period will end, and you will be charged ${yearlyPrice} per user per year billed annually. A prorata with your current subscription will be applied."
msgstr ""
#. js-lingui-id: YQK8fJ
#: src/pages/auth/SignInUp.tsx
msgid "Your Workspace"
@@ -7689,6 +7533,6 @@ msgid "Your workspace doesn't have an active subscription. Please contact your a
msgstr "您的工作區沒有有效的訂閱。請聯絡您的管理員。"
#. js-lingui-id: RhNbPE
#: src/modules/billing/components/SettingsBillingContent.tsx
#: src/pages/settings/SettingsBilling.tsx
msgid "Your workspace will be disabled"
msgstr "您的工作區將被禁用"
@@ -1,109 +0,0 @@
import { useLingui } from '@lingui/react/macro';
import { useRecoilValue } from 'recoil';
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { SettingsBillingCreditsSection } from '@/billing/components/SettingsBillingCreditsSection';
import { SettingsBillingSubscriptionInfo } from '@/billing/components/SettingsBillingSubscriptionInfo';
import { useRedirect } from '@/domain-manager/hooks/useRedirect';
import { SettingsPageContainer } from '@/settings/components/SettingsPageContainer';
import { useSubscriptionStatus } from '@/workspace/hooks/useSubscriptionStatus';
import { isDefined } from 'twenty-shared/utils';
import { H2Title, IconCircleX, IconCreditCard } from 'twenty-ui/display';
import { Button } from 'twenty-ui/input';
import { Section } from 'twenty-ui/layout';
import {
SubscriptionStatus,
useBillingPortalSessionQuery,
} from '~/generated-metadata/graphql';
import { useGetWorkflowNodeExecutionUsage } from '@/billing/hooks/useGetWorkflowNodeExecutionUsage';
export const SettingsBillingContent = () => {
const { t } = useLingui();
const { redirect } = useRedirect();
const currentWorkspace = useRecoilValue(currentWorkspaceState);
const subscriptions = currentWorkspace?.billingSubscriptions;
const hasSubscriptions = (subscriptions?.length ?? 0) > 0;
const subscriptionStatus = useSubscriptionStatus();
const { isGetMeteredProductsUsageQueryLoaded } =
useGetWorkflowNodeExecutionUsage();
const hasNotCanceledCurrentSubscription =
isDefined(subscriptionStatus) &&
subscriptionStatus !== SubscriptionStatus.Canceled;
const { data, loading } = useBillingPortalSessionQuery({
variables: {
returnUrlPath: '/settings/billing',
},
skip: !hasSubscriptions,
});
const billingPortalButtonDisabled =
loading || !isDefined(data) || !isDefined(data.billingPortalSession.url);
const openBillingPortal = () => {
if (isDefined(data) && isDefined(data.billingPortalSession.url)) {
redirect(data.billingPortalSession.url);
}
};
return (
<SettingsPageContainer>
{hasNotCanceledCurrentSubscription &&
currentWorkspace &&
currentWorkspace.currentBillingSubscription && (
<SettingsBillingSubscriptionInfo
currentWorkspace={currentWorkspace}
currentBillingSubscription={
currentWorkspace.currentBillingSubscription
}
/>
)}
{hasNotCanceledCurrentSubscription &&
currentWorkspace &&
currentWorkspace.currentBillingSubscription &&
isGetMeteredProductsUsageQueryLoaded && (
<SettingsBillingCreditsSection
currentBillingSubscription={
currentWorkspace.currentBillingSubscription
}
/>
)}
<Section>
<H2Title
title={t`Manage billing information`}
description={t`Edit payment method, see your invoices and more`}
/>
<Button
Icon={IconCreditCard}
title={t`View billing details`}
variant="secondary"
onClick={openBillingPortal}
disabled={billingPortalButtonDisabled}
/>
</Section>
{hasNotCanceledCurrentSubscription && (
<Section>
<H2Title
title={t`Cancel your subscription`}
description={t`Your workspace will be disabled`}
/>
<Button
Icon={IconCircleX}
title={t`Cancel Plan`}
variant="secondary"
accent="danger"
onClick={openBillingPortal}
disabled={billingPortalButtonDisabled}
/>
</Section>
)}
</SettingsPageContainer>
);
};
@@ -1,12 +1,6 @@
import { type CurrentWorkspace } from '@/auth/states/currentWorkspaceState';
import { MeteredPriceSelector } from '@/billing/components/internal/MeteredPriceSelector';
import { SettingsBillingLabelValueItem } from '@/billing/components/internal/SettingsBillingLabelValueItem';
import { SettingsBillingLabelValueItem } from '@/billing/components/SettingsBillingLabelValueItem';
import { SubscriptionInfoContainer } from '@/billing/components/SubscriptionInfoContainer';
import { useBillingWording } from '@/billing/hooks/useBillingWording';
import { useCurrentBillingFlags } from '@/billing/hooks/useCurrentBillingFlags';
import { useCurrentMetered } from '@/billing/hooks/useCurrentMetered';
import { useGetWorkflowNodeExecutionUsage } from '@/billing/hooks/useGetWorkflowNodeExecutionUsage';
import { useNumberFormat } from '@/localization/hooks/useNumberFormat';
import { useSubscriptionStatus } from '@/workspace/hooks/useSubscriptionStatus';
import styled from '@emotion/styled';
import { t } from '@lingui/core/macro';
@@ -16,6 +10,14 @@ import { Section } from 'twenty-ui/layout';
import { BACKGROUND_LIGHT, COLOR } from 'twenty-ui/theme';
import { SubscriptionStatus } from '~/generated/graphql';
import { formatToShortNumber } from '~/utils/format/formatToShortNumber';
import { formatNumber } from '~/utils/format/formatNumber';
// import { useListAvailableMeteredBillingPricesQuery } from '~/generated-metadata/graphql';
// import { MeteredPriceSelector } from '@/billing/components/internal/MeteredPriceSelector';
import { type CurrentWorkspace } from '@/auth/states/currentWorkspaceState';
import {
getIntervalLabel,
isMonthlyPlan,
} from '@/billing/utils/subscriptionFlags';
const StyledLineSeparator = styled.div`
width: 100%;
@@ -24,41 +26,23 @@ const StyledLineSeparator = styled.div`
`;
export const SettingsBillingCreditsSection = ({
currentBillingSubscription,
currentWorkspace,
}: {
currentBillingSubscription: NonNullable<
CurrentWorkspace['currentBillingSubscription']
>;
currentWorkspace: CurrentWorkspace;
}) => {
const subscriptionStatus = useSubscriptionStatus();
const { formatNumber } = useNumberFormat();
const { isMonthlyPlan } = useCurrentBillingFlags();
const { getCurrentMeteredPricesByInterval } = useCurrentMetered();
const { getIntervalLabel } = useBillingWording();
const isTrialing = subscriptionStatus === SubscriptionStatus.Trialing;
const { getWorkflowNodeExecutionUsage } = useGetWorkflowNodeExecutionUsage();
const { usedCredits, grantedCredits, unitPriceCents } =
getWorkflowNodeExecutionUsage();
useGetWorkflowNodeExecutionUsage();
// const { data: meteredBillingPrices } =
// useListAvailableMeteredBillingPricesQuery();
const progressBarValue = (usedCredits / grantedCredits) * 100;
const intervalLabel = getIntervalLabel(isMonthlyPlan);
const extraCreditsUsed = Math.max(0, usedCredits - grantedCredits);
const costPer1kExtraCredits = (unitPriceCents / 100) * 1000;
const costExtraCredits = (extraCreditsUsed * unitPriceCents) / 100;
const meteredBillingPrices = getCurrentMeteredPricesByInterval(
currentBillingSubscription.interval,
);
const intervalLabel = getIntervalLabel(isMonthlyPlan(currentWorkspace));
return (
<>
@@ -70,7 +54,7 @@ export const SettingsBillingCreditsSection = ({
<SubscriptionInfoContainer>
<SettingsBillingLabelValueItem
label={t`Credits Used`}
value={`${formatNumber(usedCredits)}/${formatNumber(grantedCredits, { abbreviate: true, decimals: 2 })}`}
value={`${formatNumber(usedCredits)}/${formatToShortNumber(grantedCredits)}`}
/>
<ProgressBar
value={progressBarValue}
@@ -83,30 +67,36 @@ export const SettingsBillingCreditsSection = ({
{!isTrialing && (
<SettingsBillingLabelValueItem
label={t`Extra Credits Used`}
value={`${formatToShortNumber(extraCreditsUsed)}`}
/>
)}
{!isTrialing && (
<SettingsBillingLabelValueItem
label={t`Cost per 1k Extra Credits`}
value={`$${formatNumber(costPer1kExtraCredits, { abbreviate: true, decimals: 6 })}`}
value={`${formatNumber(Math.max(0, usedCredits - grantedCredits))}`}
/>
)}
<SettingsBillingLabelValueItem
label={t`Cost per 1k Extra Credits`}
value={`$${formatNumber((unitPriceCents / 100) * 1000, 2)}`}
/>
{!isTrialing && (
<SettingsBillingLabelValueItem
label={t`Cost`}
isValueInPrimaryColor={true}
value={`$${formatNumber(costExtraCredits, { decimals: 2 })}`}
value={`$${formatNumber(((usedCredits - grantedCredits) * unitPriceCents) / 100, 2)}`}
/>
)}
</SubscriptionInfoContainer>
</Section>
<Section>
<MeteredPriceSelector
meteredBillingPrices={meteredBillingPrices}
isTrialing={isTrialing}
/>
</Section>
{/*<Section>*/}
{/* {meteredBillingPrices?.listAvailableMeteredBillingPrices && (*/}
{/* <MeteredPriceSelector*/}
{/* billingSubscriptionItems={*/}
{/* currentWorkspace.currentBillingSubscription*/}
{/* ?.billingSubscriptionItems ?? []*/}
{/* }*/}
{/* meteredBillingPrices={*/}
{/* meteredBillingPrices.listAvailableMeteredBillingPrices*/}
{/* }*/}
{/* isTrialing={isTrialing}*/}
{/* />*/}
{/* )}*/}
{/*</Section>*/}
</>
);
};
@@ -1,27 +1,16 @@
import { SubscriptionInfoContainer } from '@/billing/components/SubscriptionInfoContainer';
import {
SubscriptionInfoHeaderRow,
SubscriptionInfoRowContainer,
} from '@/billing/components/internal/SubscriptionInfoRowContainer';
import { SubscriptionInfoRowContainer } from '@/billing/components/SubscriptionInfoRowContainer';
import {
type CurrentWorkspace,
currentWorkspaceState,
} from '@/auth/states/currentWorkspaceState';
import { PlansTags } from '@/billing/components/internal/PlansTags';
import { useBillingWording } from '@/billing/hooks/useBillingWording';
import { useCurrentBillingFlags } from '@/billing/hooks/useCurrentBillingFlags';
import { useCurrentMetered } from '@/billing/hooks/useCurrentMetered';
import { useCurrentPlan } from '@/billing/hooks/useCurrentPlan';
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { useEndSubscriptionTrialPeriod } from '@/billing/hooks/useEndSubscriptionTrialPeriod';
import { useGetWorkflowNodeExecutionUsage } from '@/billing/hooks/useGetWorkflowNodeExecutionUsage';
import { useHasNextBillingPhase } from '@/billing/hooks/useHasNextBillingPhase';
import { useNextBillingPhase } from '@/billing/hooks/useNextBillingPhase';
import { useNextBillingSeats } from '@/billing/hooks/useNextBillingSeats';
import { useNextPlan } from '@/billing/hooks/useNextPlan';
import { useSplitPhaseItemsInPrices } from '@/billing/hooks/useSplitPhaseItemsInPrices';
import { useNumberFormat } from '@/localization/hooks/useNumberFormat';
import { formatMonthlyPrices } from '@/billing/utils/formatMonthlyPrices';
import {
getIntervalLabel,
isEnterprisePlan as isEnterprisePlanFn,
isMonthlyPlan as isMonthlyPlanFn,
isProPlan as isProPlanFn,
isYearlyPlan as isYearlyPlanFn,
} from '@/billing/utils/subscriptionFlags';
import { usePermissionFlagMap } from '@/settings/roles/hooks/usePermissionFlagMap';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { ConfirmationModal } from '@/ui/layout/modal/components/ConfirmationModal';
@@ -29,16 +18,15 @@ import { useModal } from '@/ui/layout/modal/hooks/useModal';
import { useSubscriptionStatus } from '@/workspace/hooks/useSubscriptionStatus';
import styled from '@emotion/styled';
import { useLingui } from '@lingui/react/macro';
import { useMemo, useState } from 'react';
import { useSetRecoilState } from 'recoil';
import { isDefined } from 'twenty-shared/utils';
import { useRecoilState } from 'recoil';
import { capitalize, isDefined } from 'twenty-shared/utils';
import { Tag } from 'twenty-ui/components';
import {
H2Title,
IconArrowUp,
IconCalendarEvent,
IconCalendarRepeat,
IconCircleX,
IconCoins,
IconTag,
IconUsers,
} from 'twenty-ui/display';
@@ -46,39 +34,23 @@ import { Button } from 'twenty-ui/input';
import { Section } from 'twenty-ui/layout';
import {
BillingPlanKey,
type BillingPlanOutput,
BillingProductKey,
PermissionFlagType,
SubscriptionInterval,
useCancelSwitchBillingIntervalMutation,
useCancelSwitchBillingPlanMutation,
useCancelSwitchMeteredPriceMutation,
useSwitchBillingPlanMutation,
useSwitchSubscriptionIntervalMutation,
SubscriptionStatus,
useBillingBaseProductPricesQuery,
useSwitchSubscriptionToEnterprisePlanMutation,
useSwitchSubscriptionToYearlyIntervalMutation,
} from '~/generated-metadata/graphql';
import { SubscriptionStatus } from '~/generated/graphql';
import { beautifyExactDate } from '~/utils/date-utils';
const SWITCH_BILLING_INTERVAL_TO_MONTHLY_MODAL_ID =
'switch-billing-interval-to-monthly-modal';
const SWITCH_BILLING_INTERVAL_MODAL_ID = 'switch-billing-interval-modal';
const SWITCH_BILLING_INTERVAL_TO_YEARLY_MODAL_ID =
'switch-billing-interval-to-yearly-modal';
const SWITCH_BILLING_PLAN_TO_ENTERPRISE_MODAL_ID =
'switch-billing-plan-to-enterprise-modal';
const SWITCH_BILLING_PLAN_TO_PRO_MODAL_ID = 'switch-billing-plan-to-pro-modal';
const SWITCH_BILLING_PLAN_MODAL_ID = 'switch-billing-plan-modal';
const END_TRIAL_PERIOD_MODAL_ID = 'end-trial-period-modal';
const CANCEL_SWITCH_BILLING_PLAN_MODAL_ID = 'cancel-switch-billing-plan-modal';
const CANCEL_SWITCH_BILLING_INTERVAL_MODAL_ID =
'cancel-switch-billing-interval-modal';
const CANCEL_SWITCH_METERED_PRICE_MODAL_ID =
'cancel-switch-metered-price-modal';
const StyledSwitchButtonContainer = styled.div`
align-items: center;
display: flex;
@@ -86,64 +58,34 @@ const StyledSwitchButtonContainer = styled.div`
margin-top: ${({ theme }) => theme.spacing(4)};
`;
export const SettingsBillingSubscriptionInfo = ({
currentWorkspace,
currentBillingSubscription,
}: {
currentWorkspace: CurrentWorkspace;
currentBillingSubscription: NonNullable<
CurrentWorkspace['currentBillingSubscription']
>;
}) => {
export const SettingsBillingSubscriptionInfo = () => {
const { t } = useLingui();
const { formatNumber } = useNumberFormat();
const { openModal } = useModal();
const { refetchMeteredProductsUsage } = useGetWorkflowNodeExecutionUsage();
const { enqueueSuccessSnackBar, enqueueErrorSnackBar } = useSnackBar();
const { currentMeteredBillingPrice } = useCurrentMetered();
const { currentPlan, oppositPlan } = useCurrentPlan();
const { isEnterprisePlan, isYearlyPlan, isMonthlyPlan, isProPlan } =
useCurrentBillingFlags();
const { splitedPhaseItemsInPrices } = useSplitPhaseItemsInPrices();
const { hasNextBillingPhase } = useHasNextBillingPhase();
const { nextPlan } = useNextPlan();
const { nextBillingSeats } = useNextBillingSeats();
const { nextBillingPhase } = useNextBillingPhase();
const nextInterval =
splitedPhaseItemsInPrices?.nextLicensedPrice?.recurringInterval;
const nextMeteredBillingPrice = splitedPhaseItemsInPrices.nextMereredPrice;
const subscriptionStatus = useSubscriptionStatus();
const {
getIntervalLabelAsAdjectiveCapitalize,
confirmationModalSwitchToProMessage,
confirmationModalSwitchToOrganizationMessage,
confirmationModalSwitchToMonthlyMessage,
confirmationModalSwitchToYearlyMessage,
confirmationModalCancelPlanSwitchingMessage,
confirmationModalCancelIntervalSwitchingMessage,
getBeautifiedRenewDate,
} = useBillingWording();
const { data: pricesData } = useBillingBaseProductPricesQuery();
const [switchSubscriptionIntervalMutation] =
useSwitchSubscriptionIntervalMutation();
const [switchToYearlyInterval] =
useSwitchSubscriptionToYearlyIntervalMutation();
const [switchBillingPlan] = useSwitchBillingPlanMutation();
const [switchToEnterprisePlan] =
useSwitchSubscriptionToEnterprisePlanMutation();
const [cancelSwitchBillingInterval] =
useCancelSwitchBillingIntervalMutation();
const [currentWorkspace, setCurrentWorkspace] = useRecoilState(
currentWorkspaceState,
);
const [cancelSwitchBillingPlan] = useCancelSwitchBillingPlanMutation();
const isMonthlyPlan = isMonthlyPlanFn(currentWorkspace);
const [cancelSwitchMeteredPrice] = useCancelSwitchMeteredPriceMutation();
const isYearlyPlan = isYearlyPlanFn(currentWorkspace);
const setCurrentWorkspace = useSetRecoilState(currentWorkspaceState);
const isProPlan = isProPlanFn(currentWorkspace);
const isEnterprisePlan = isEnterprisePlanFn(currentWorkspace);
const isTrialPeriod = subscriptionStatus === SubscriptionStatus.Trialing;
@@ -153,189 +95,97 @@ export const SettingsBillingSubscriptionInfo = ({
const { endTrialPeriod, isLoading: isEndTrialPeriodLoading } =
useEndSubscriptionTrialPeriod();
const planDescriptor = isProPlan
? { color: 'sky' as const, label: t`Pro` }
: isEnterprisePlan
? { color: 'purple' as const, label: t`Organization` }
: undefined;
const planTag = planDescriptor ? (
<>
<Tag color={planDescriptor.color} text={planDescriptor.label} />
{isTrialPeriod && <Tag color="blue" text={t`Trial`} />}
</>
) : undefined;
const intervalLabel = capitalize(getIntervalLabel(isMonthlyPlan, true));
const { [PermissionFlagType.WORKSPACE]: hasPermissionToEndTrialPeriod } =
usePermissionFlagMap();
const seats = currentBillingSubscription.billingSubscriptionItems?.find(
(item) =>
item.billingProduct.metadata.productKey ===
BillingProductKey.BASE_PRODUCT,
)?.quantity as number | undefined;
const seats =
currentWorkspace?.currentBillingSubscription?.billingSubscriptionItems?.find(
(item) =>
item.billingProduct?.metadata.productKey ===
BillingProductKey.BASE_PRODUCT,
)?.quantity as number | undefined;
// Loading states to avoid race conditions on actions
const [isSwitchingInterval, setIsSwitchingInterval] = useState(false);
const [isSwitchingPlan, setIsSwitchingPlan] = useState(false);
const [isCancellingPlanSwitch, setIsCancellingPlanSwitch] = useState(false);
const [isCancellingIntervalSwitch, setIsCancellingIntervalSwitch] =
useState(false);
const [isCancellingMeteredSwitch, setIsCancellingMeteredSwitch] =
useState(false);
const baseProductPrices = pricesData?.plans as BillingPlanOutput[];
const isAnyActionLoading = useMemo(
() =>
isSwitchingInterval ||
isSwitchingPlan ||
isCancellingPlanSwitch ||
isCancellingIntervalSwitch ||
isCancellingMeteredSwitch ||
isEndTrialPeriodLoading,
[
isSwitchingInterval,
isSwitchingPlan,
isCancellingPlanSwitch,
isCancellingIntervalSwitch,
isCancellingMeteredSwitch,
isEndTrialPeriodLoading,
],
);
const formattedPrices = formatMonthlyPrices(baseProductPrices);
const refreshWorkspace = ({
currentBillingSubscription,
billingSubscriptions,
}: Pick<
CurrentWorkspace,
'currentBillingSubscription' | 'billingSubscriptions'
>) => {
setCurrentWorkspace({
...currentWorkspace,
currentBillingSubscription,
billingSubscriptions,
});
refetchMeteredProductsUsage();
};
const renewDate =
currentWorkspace?.currentBillingSubscription?.currentPeriodEnd;
const yearlyPrice =
formattedPrices?.[
currentWorkspace?.currentBillingSubscription?.metadata[
'plan'
] as BillingPlanKey
]?.[SubscriptionInterval.Year];
const enterprisePrice =
formattedPrices?.[BillingPlanKey.ENTERPRISE]?.[
currentWorkspace?.currentBillingSubscription?.interval as
| SubscriptionInterval.Month
| SubscriptionInterval.Year
];
const switchInterval = async () => {
if (isAnyActionLoading || isSwitchingInterval) return;
setIsSwitchingInterval(true);
try {
const { success } = await endTrialPeriodIfNeeded();
if (success === false) {
return;
await switchToYearlyInterval();
if (isDefined(currentWorkspace?.currentBillingSubscription)) {
const newCurrentWorkspace = {
...currentWorkspace,
currentBillingSubscription: {
...currentWorkspace?.currentBillingSubscription,
interval: SubscriptionInterval.Year,
},
};
setCurrentWorkspace(newCurrentWorkspace);
}
const { data } = await switchSubscriptionIntervalMutation();
const beautifiedRenewDate = getBeautifiedRenewDate();
const isCurrentMonth =
currentBillingSubscription.interval === SubscriptionInterval.Month;
const message = isCurrentMonth
? t`Subscription has been switched to Yearly.`
: t`Subscription will be switch to Monthly the ${beautifiedRenewDate}.`;
if (
isDefined(data?.switchSubscriptionInterval.currentBillingSubscription)
) {
refreshWorkspace(data.switchSubscriptionInterval);
}
enqueueSuccessSnackBar({ message });
enqueueSuccessSnackBar({
message: t`Subscription has been switched to Yearly.`,
});
} catch {
enqueueErrorSnackBar({
message: t`Error while switching subscription.`,
message: t`Error while switching subscription to Yearly.`,
});
} finally {
setIsSwitchingInterval(false);
}
};
const endTrialPeriodIfNeeded = async () => {
if (currentBillingSubscription.status === SubscriptionStatus.Trialing) {
return await endTrialPeriod();
}
return { success: true };
};
const switchPlan = async () => {
if (isAnyActionLoading || isSwitchingPlan) return;
setIsSwitchingPlan(true);
try {
const { success } = await endTrialPeriodIfNeeded();
if (success === false) {
return;
await switchToEnterprisePlan();
if (isDefined(currentWorkspace?.currentBillingSubscription)) {
const newCurrentWorkspace = {
...currentWorkspace,
currentBillingSubscription: {
...currentWorkspace?.currentBillingSubscription,
metadata: {
...currentWorkspace?.currentBillingSubscription.metadata,
plan: BillingPlanKey.ENTERPRISE,
},
},
};
setCurrentWorkspace(newCurrentWorkspace);
}
const { data } = await switchBillingPlan();
if (isDefined(data?.switchBillingPlan.currentBillingSubscription)) {
refreshWorkspace(data.switchBillingPlan);
}
const beautifiedRenewDate = getBeautifiedRenewDate();
enqueueSuccessSnackBar({
message:
oppositPlan === BillingPlanKey.ENTERPRISE
? t`Subscription has been switched to ${oppositPlan} Plan.`
: `Subscription will be switched to ${oppositPlan} Plan the ${beautifiedRenewDate}.`,
message: t`Subscription has been switched to Organization Plan.`,
});
} catch {
enqueueErrorSnackBar({
message: t`Error while switching subscription to ${oppositPlan} Plan.`,
message: t`Error while switching subscription to Organization Plan.`,
});
} finally {
setIsSwitchingPlan(false);
}
};
const cancelPlanSwitching = async () => {
if (isAnyActionLoading || isCancellingPlanSwitch) return;
setIsCancellingPlanSwitch(true);
try {
const { data } = await cancelSwitchBillingPlan();
if (isDefined(data?.cancelSwitchBillingPlan.currentBillingSubscription)) {
refreshWorkspace(data.cancelSwitchBillingPlan);
}
enqueueSuccessSnackBar({
message: t`Plan switching has been cancelled.`,
});
} catch {
enqueueErrorSnackBar({
message: t`Error while cancelling plan switching.`,
});
} finally {
setIsCancellingPlanSwitch(false);
}
};
const cancelIntervalSwitching = async () => {
if (isAnyActionLoading || isCancellingIntervalSwitch) return;
setIsCancellingIntervalSwitch(true);
try {
const { data } = await cancelSwitchBillingInterval();
if (
isDefined(data?.cancelSwitchBillingInterval.currentBillingSubscription)
) {
refreshWorkspace(data.cancelSwitchBillingInterval);
}
enqueueSuccessSnackBar({
message: t`Interval switching has been cancelled.`,
});
} catch {
enqueueErrorSnackBar({
message: t`Error while cancelling interval switching.`,
});
} finally {
setIsCancellingIntervalSwitch(false);
}
};
const cancelMeteredSwitching = async () => {
if (isAnyActionLoading || isCancellingMeteredSwitch) return;
setIsCancellingMeteredSwitch(true);
try {
const { data } = await cancelSwitchMeteredPrice();
if (
isDefined(data?.cancelSwitchMeteredPrice?.currentBillingSubscription)
) {
refreshWorkspace(data.cancelSwitchMeteredPrice);
}
enqueueSuccessSnackBar({
message: t`Metered tier switching has been cancelled.`,
});
} catch {
enqueueErrorSnackBar({
message: t`Error while cancelling metered tier switching.`,
});
} finally {
setIsCancellingMeteredSwitch(false);
}
};
@@ -343,220 +193,77 @@ export const SettingsBillingSubscriptionInfo = ({
<Section>
<H2Title title={t`Subscription`} description={t`About my subscription`} />
<SubscriptionInfoContainer>
<SubscriptionInfoHeaderRow show={hasNextBillingPhase} />
<SubscriptionInfoRowContainer
label={t`Plan`}
Icon={IconTag}
currentValue={
<PlansTags
plan={currentPlan.planKey}
isTrialPeriod={isTrialPeriod}
/>
}
nextValue={
nextPlan ? (
<PlansTags
plan={nextPlan.planKey}
isTrialPeriod={isTrialPeriod}
/>
) : undefined
}
value={planTag}
/>
<SubscriptionInfoRowContainer
label={t`Billing interval`}
Icon={IconCalendarEvent}
currentValue={getIntervalLabelAsAdjectiveCapitalize(
currentMeteredBillingPrice.recurringInterval ===
SubscriptionInterval.Month,
)}
nextValue={
nextInterval
? getIntervalLabelAsAdjectiveCapitalize(
nextInterval === SubscriptionInterval.Month,
)
: undefined
}
value={intervalLabel}
/>
{currentBillingSubscription.currentPeriodEnd && (
{renewDate && (
<SubscriptionInfoRowContainer
label={t`Renewal date`}
Icon={IconCalendarRepeat}
currentValue={getBeautifiedRenewDate()}
nextValue={
nextBillingPhase
? beautifyExactDate(nextBillingPhase.end_date * 1000)
: undefined
}
value={beautifyExactDate(renewDate)}
/>
)}
<SubscriptionInfoRowContainer
label={t`Seats`}
Icon={IconUsers}
currentValue={seats}
nextValue={nextBillingSeats}
/>
<SubscriptionInfoRowContainer
label={t`Credits by period`}
Icon={IconCoins}
currentValue={formatNumber(currentMeteredBillingPrice.tiers[0].upTo, {
abbreviate: true,
decimals: 2,
})}
nextValue={
nextMeteredBillingPrice
? formatNumber(nextMeteredBillingPrice.tiers[0].upTo, {
abbreviate: true,
decimals: 2,
})
: undefined
}
value={seats}
/>
</SubscriptionInfoContainer>
<StyledSwitchButtonContainer>
{isTrialPeriod && hasPermissionToEndTrialPeriod && (
{isMonthlyPlan && (
<Button
Icon={IconArrowUp}
title={t`Switch to Yearly`}
variant="secondary"
onClick={() => openModal(SWITCH_BILLING_INTERVAL_MODAL_ID)}
disabled={!canSwitchSubscription}
/>
)}
{isProPlan && (
<Button
Icon={IconArrowUp}
title={t`Switch to Organization`}
variant="secondary"
onClick={() => openModal(SWITCH_BILLING_PLAN_MODAL_ID)}
disabled={!canSwitchSubscription}
/>
)}
{isTrialPeriod && hasPermissionToEndTrialPeriod && (
<Button
Icon={IconCircleX}
title={t`Subscribe Now`}
variant="secondary"
onClick={() => openModal(END_TRIAL_PERIOD_MODAL_ID)}
disabled={isEndTrialPeriodLoading || isAnyActionLoading}
disabled={isEndTrialPeriodLoading}
/>
)}
{nextInterval &&
currentMeteredBillingPrice.recurringInterval !== nextInterval && (
<Button
Icon={IconCircleX}
title={t`Cancel interval switching`}
variant="secondary"
onClick={() => openModal(CANCEL_SWITCH_BILLING_INTERVAL_MODAL_ID)}
disabled={!canSwitchSubscription || isAnyActionLoading}
/>
)}
{isMonthlyPlan &&
(!nextInterval ||
currentMeteredBillingPrice.recurringInterval === nextInterval) && (
<Button
Icon={IconArrowUp}
title={t`Switch to Yearly`}
variant="secondary"
onClick={() =>
openModal(SWITCH_BILLING_INTERVAL_TO_YEARLY_MODAL_ID)
}
disabled={!canSwitchSubscription || isAnyActionLoading}
/>
)}
{isYearlyPlan &&
(!nextInterval ||
currentMeteredBillingPrice.recurringInterval === nextInterval) && (
<Button
Icon={IconArrowUp}
title={t`Switch to Monthly`}
variant="secondary"
onClick={() =>
openModal(SWITCH_BILLING_INTERVAL_TO_MONTHLY_MODAL_ID)
}
disabled={!canSwitchSubscription || isAnyActionLoading}
/>
)}
{isProPlan &&
(!nextPlan || currentPlan.planKey === nextPlan.planKey) && (
<Button
Icon={IconArrowUp}
title={t`Switch to Organization`}
variant="secondary"
onClick={() =>
openModal(SWITCH_BILLING_PLAN_TO_ENTERPRISE_MODAL_ID)
}
disabled={!canSwitchSubscription || isAnyActionLoading}
/>
)}
{isEnterprisePlan &&
(!nextPlan || currentPlan.planKey === nextPlan.planKey) && (
<Button
Icon={IconArrowUp}
title={t`Switch to Pro`}
variant="secondary"
onClick={() => openModal(SWITCH_BILLING_PLAN_TO_PRO_MODAL_ID)}
disabled={!canSwitchSubscription || isAnyActionLoading}
/>
)}
{nextPlan && currentPlan.planKey !== nextPlan.planKey && (
<Button
Icon={IconCircleX}
title={t`Cancel plan switching`}
variant="secondary"
onClick={() => openModal(CANCEL_SWITCH_BILLING_PLAN_MODAL_ID)}
disabled={!canSwitchSubscription || isAnyActionLoading}
/>
)}
{/*@todo: find a way to check if the metered tier match when interval change too*/}
{nextInterval &&
nextMeteredBillingPrice &&
currentMeteredBillingPrice.recurringInterval === nextInterval &&
currentMeteredBillingPrice.tiers[0].upTo !==
nextMeteredBillingPrice.tiers[0].upTo && (
<Button
Icon={IconCircleX}
title={t`Cancel metered tier switching`}
variant="secondary"
onClick={() => openModal(CANCEL_SWITCH_METERED_PRICE_MODAL_ID)}
disabled={!canSwitchSubscription || isAnyActionLoading}
/>
)}
</StyledSwitchButtonContainer>
<ConfirmationModal
modalId={SWITCH_BILLING_INTERVAL_TO_YEARLY_MODAL_ID}
modalId={SWITCH_BILLING_INTERVAL_MODAL_ID}
title={t`Change to Yearly?`}
subtitle={confirmationModalSwitchToYearlyMessage()}
onConfirmClick={switchInterval}
confirmButtonText={t`Confirm`}
confirmButtonAccent={'blue'}
loading={isSwitchingInterval}
/>
<ConfirmationModal
modalId={SWITCH_BILLING_INTERVAL_TO_MONTHLY_MODAL_ID}
title={t`Change to Monthly?`}
subtitle={confirmationModalSwitchToMonthlyMessage()}
subtitle={t`You will be charged $${yearlyPrice} per user per month billed annually. A prorata with your current subscription will be applied.`}
onConfirmClick={switchInterval}
confirmButtonText={t`Confirm`}
confirmButtonAccent="blue"
loading={isSwitchingInterval}
/>
<ConfirmationModal
modalId={CANCEL_SWITCH_BILLING_INTERVAL_MODAL_ID}
title={t`Cancel interval switching?`}
subtitle={confirmationModalCancelIntervalSwitchingMessage()}
onConfirmClick={cancelIntervalSwitching}
confirmButtonText={t`Confirm`}
confirmButtonAccent="blue"
loading={isCancellingIntervalSwitch}
/>
<ConfirmationModal
modalId={SWITCH_BILLING_PLAN_TO_ENTERPRISE_MODAL_ID}
modalId={SWITCH_BILLING_PLAN_MODAL_ID}
title={t`Change to Organization Plan?`}
subtitle={confirmationModalSwitchToOrganizationMessage()}
subtitle={
isYearlyPlan
? t`You will be charged $${enterprisePrice} per user per month billed annually.`
: t`You will be charged $${enterprisePrice} per user per month.`
}
onConfirmClick={switchPlan}
confirmButtonText={t`Confirm`}
confirmButtonAccent="blue"
loading={isSwitchingPlan}
/>
<ConfirmationModal
modalId={SWITCH_BILLING_PLAN_TO_PRO_MODAL_ID}
title={t`Change to Pro Plan?`}
subtitle={confirmationModalSwitchToProMessage()}
onConfirmClick={switchPlan}
confirmButtonText={t`Confirm`}
confirmButtonAccent="blue"
loading={isSwitchingPlan}
/>
<ConfirmationModal
modalId={CANCEL_SWITCH_BILLING_PLAN_MODAL_ID}
title={t`Cancel plan switching?`}
subtitle={confirmationModalCancelPlanSwitchingMessage()}
onConfirmClick={cancelPlanSwitching}
confirmButtonText={t`Confirm`}
confirmButtonAccent="blue"
loading={isCancellingPlanSwitch}
/>
<ConfirmationModal
modalId={END_TRIAL_PERIOD_MODAL_ID}
@@ -567,15 +274,6 @@ export const SettingsBillingSubscriptionInfo = ({
confirmButtonAccent="blue"
loading={isEndTrialPeriodLoading}
/>
<ConfirmationModal
modalId={CANCEL_SWITCH_METERED_PRICE_MODAL_ID}
title={t`Cancel metered tier switching?`}
subtitle={t`You have scheduled a metered tier change. Do you want to cancel it?`}
onConfirmClick={cancelMeteredSwitching}
confirmButtonText={t`Confirm`}
confirmButtonAccent="blue"
loading={isCancellingMeteredSwitch}
/>
</Section>
);
};
@@ -2,21 +2,18 @@ import { type IconComponent } from 'twenty-ui/display';
import React from 'react';
import styled from '@emotion/styled';
import { useTheme } from '@emotion/react';
import { t } from '@lingui/core/macro';
type SubscriptionInfoRowContainerProps = {
Icon: IconComponent;
label: string;
currentValue: React.ReactNode;
nextValue?: React.ReactNode;
value: React.ReactNode;
};
const StyledContainer = styled.div`
align-items: center;
gap: ${({ theme }) => theme.spacing(1)};
color: ${({ theme }) => theme.font.color.primary};
display: grid;
grid-template-columns: repeat(3, 1fr);
display: flex;
`;
const StyledIconLabelContainer = styled.div`
@@ -24,6 +21,7 @@ const StyledIconLabelContainer = styled.div`
gap: ${({ theme }) => theme.spacing(1)};
color: ${({ theme }) => theme.font.color.tertiary};
display: flex;
width: 120px;
`;
const StyledLabelContainer = styled.div`
@@ -32,27 +30,10 @@ const StyledLabelContainer = styled.div`
white-space: nowrap;
`;
const StyledHeaderText = styled.div`
color: ${({ theme }) => theme.font.color.tertiary};
font-size: ${({ theme }) => theme.font.size.sm};
`;
export const SubscriptionInfoHeaderRow = ({ show }: { show: boolean }) => {
if (!show) return null;
return (
<StyledContainer>
<div />
<StyledHeaderText>{t`Current`}</StyledHeaderText>
<StyledHeaderText>{t`Next`}</StyledHeaderText>
</StyledContainer>
);
};
export const SubscriptionInfoRowContainer = ({
Icon,
label,
currentValue,
nextValue,
value,
}: SubscriptionInfoRowContainerProps) => {
const theme = useTheme();
return (
@@ -61,8 +42,7 @@ export const SubscriptionInfoRowContainer = ({
<Icon size={theme.icon.size.md} />
<StyledLabelContainer>{label}</StyledLabelContainer>
</StyledIconLabelContainer>
{currentValue}
<div>{nextValue ?? ''}</div>
{value}
</StyledContainer>
);
};
@@ -33,6 +33,8 @@ export const SubscriptionPrice = ({ type, price }: SubscriptionPriceProps) => {
case SubscriptionInterval.Year:
priceUnit = t`seat / month - billed yearly`;
break;
default:
priceUnit = `seat / ${type.toLocaleLowerCase()}`;
}
return (
@@ -1,188 +1,99 @@
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { useBillingWording } from '@/billing/hooks/useBillingWording';
import { useCurrentMetered } from '@/billing/hooks/useCurrentMetered';
import { useGetWorkflowNodeExecutionUsage } from '@/billing/hooks/useGetWorkflowNodeExecutionUsage';
import {
type BillingPriceTiers,
type MeteredBillingPrice,
} from '@/billing/types/billing-price-tiers.type';
import { useNumberFormat } from '@/localization/hooks/useNumberFormat';
import { useMutation } from '@apollo/client';
import { t } from '@lingui/core/macro';
import { useMemo, useState } from 'react';
import { H2Title } from 'twenty-ui/display';
import { UPDATE_SUBSCRIPTION_ITEM_PRICE } from '@/billing/graphql/mutations/updateSubscriptionItemPrice';
import { findMeteredPriceInCurrentWorkspaceSubscriptions } from '@/billing/utils/findPriceInCurrentWorkspaceSubscriptions';
import { getIntervalLabel } from '@/billing/utils/subscriptionFlags';
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { Select } from '@/ui/input/components/Select';
import { ConfirmationModal } from '@/ui/layout/modal/components/ConfirmationModal';
import { useModal } from '@/ui/layout/modal/hooks/useModal';
import styled from '@emotion/styled';
import { t } from '@lingui/core/macro';
import { useState } from 'react';
import { useRecoilState } from 'recoil';
import { findOrThrow, isDefined } from 'twenty-shared/utils';
import { H2Title } from 'twenty-ui/display';
import { Button } from 'twenty-ui/input';
import { useSetMeteredSubscriptionPriceMutation } from '~/generated-metadata/graphql';
import { SubscriptionInterval } from '~/generated/graphql';
import {
type BillingPriceOutput,
type BillingSubscriptionItem,
SubscriptionInterval,
} from '~/generated/graphql';
import { findOrThrow } from '~/utils/array/findOrThrow';
import { formatNumber } from '~/utils/format/formatNumber';
const StyledRow = styled.div`
align-items: flex-end;
display: flex;
flex-wrap: wrap;
gap: ${({ theme }) => theme.spacing(2)};
`;
const compareByAmountAsc = (a: BillingPriceOutput, b: BillingPriceOutput) =>
a.amount - b.amount;
const StyledSelect = styled(Select<string>)`
flex: 1 1;
`;
const StyledButton = styled(Button)`
flex: 0 0 auto;
`;
const toOption = (meteredBillingPrice: BillingPriceOutput) => {
const nickname = meteredBillingPrice.nickname;
const price = formatNumber(meteredBillingPrice.amount / 100, 2);
return {
label: t`${nickname} - ${price}$`,
value: meteredBillingPrice.stripePriceId,
};
};
export const MeteredPriceSelector = ({
meteredBillingPrices,
billingSubscriptionItems,
isTrialing = false,
}: {
meteredBillingPrices: Array<MeteredBillingPrice>;
meteredBillingPrices: Array<BillingPriceOutput>;
billingSubscriptionItems: Array<BillingSubscriptionItem>;
isTrialing?: boolean;
}) => {
const { currentMeteredBillingPrice } = useCurrentMetered();
const { formatNumber } = useNumberFormat();
const [currentWorkspace, setCurrentWorkspace] = useRecoilState(
currentWorkspaceState,
const [currentMeteredBillingPrice, setCurrentMeteredBillingPrice] = useState(
findMeteredPriceInCurrentWorkspaceSubscriptions(
billingSubscriptionItems,
meteredBillingPrices,
),
);
const { refetchMeteredProductsUsage } = useGetWorkflowNodeExecutionUsage();
const { getIntervalLabel } = useBillingWording();
const [currentMeteredPrice, setCurrentMeteredPrice] = useState(
currentMeteredBillingPrice,
);
const toOption = (meteredBillingPrice: MeteredBillingPrice) => {
const price = formatNumber(meteredBillingPrice.tiers[0].flatAmount / 100);
return {
label: `${formatNumber(meteredBillingPrice.tiers[0].upTo, { abbreviate: true, decimals: 2 })} Credits - $${price}`,
value: meteredBillingPrice.stripePriceId,
};
};
const { enqueueSuccessSnackBar, enqueueErrorSnackBar } = useSnackBar();
const [setMeteredSubscriptionPrice, { loading: isUpdating }] =
useSetMeteredSubscriptionPriceMutation();
const options = [...meteredBillingPrices]
.sort((a, b) => a.tiers[0].flatAmount - b.tiers[0].flatAmount)
.map(toOption);
const { openModal } = useModal();
const [selectedPriceId, setSelectedPriceId] = useState<string | undefined>(
undefined,
const [updateSubscriptionItemPrice, { loading: isUpdating }] = useMutation(
UPDATE_SUBSCRIPTION_ITEM_PRICE,
);
const selectedPrice = meteredBillingPrices.find(
({ stripePriceId }) => stripePriceId === selectedPriceId,
const options = useMemo(
() => [...meteredBillingPrices].sort(compareByAmountAsc).map(toOption),
[meteredBillingPrices],
);
const isChanged =
selectedPriceId && selectedPriceId !== currentMeteredPrice?.stripePriceId;
const isUpgrade = () => {
if (!isChanged || !selectedPrice || !currentMeteredPrice) return false;
return (
(selectedPrice.tiers as BillingPriceTiers)[0].flatAmount >
(currentMeteredPrice.tiers as BillingPriceTiers)[0].flatAmount
);
};
const handleChange = (priceId: string) => {
setSelectedPriceId(priceId);
};
const confirmModalId = 'METERED_PRICE_CHANGE_CONFIRMATION_MODAL';
const handleOpenConfirm = () => {
if (!isChanged || !selectedPrice) return;
openModal(confirmModalId);
const handleChange = async (priceId: string) => {
try {
await updateSubscriptionItemPrice({
variables: { priceId },
});
enqueueSuccessSnackBar({ message: t`Price updated.` });
setCurrentMeteredBillingPrice(
findOrThrow(
meteredBillingPrices,
({ stripePriceId }) => stripePriceId === priceId,
),
);
} catch {
enqueueErrorSnackBar({
message: t`Failed to update price.`,
});
}
};
const recurringInterval = getIntervalLabel(
currentMeteredPrice?.recurringInterval === SubscriptionInterval.Month,
currentMeteredBillingPrice?.recurringInterval ===
SubscriptionInterval.Month,
);
const handleConfirmClick = async () => {
if (!selectedPrice) return;
try {
const { data } = await setMeteredSubscriptionPrice({
variables: { priceId: selectedPrice.stripePriceId },
});
if (
isDefined(
data?.setMeteredSubscriptionPrice.currentBillingSubscription,
) &&
isDefined(currentWorkspace)
) {
const newCurrentWorkspace = {
...currentWorkspace,
currentBillingSubscription:
data.setMeteredSubscriptionPrice.currentBillingSubscription,
billingSubscriptions:
data?.setMeteredSubscriptionPrice.billingSubscriptions,
};
setCurrentWorkspace(newCurrentWorkspace);
refetchMeteredProductsUsage();
}
enqueueSuccessSnackBar({ message: t`Price updated.` });
setCurrentMeteredPrice(
findOrThrow(
meteredBillingPrices,
({ stripePriceId }) => stripePriceId === selectedPrice.stripePriceId,
),
);
setSelectedPriceId(undefined);
} catch {
enqueueErrorSnackBar({ message: t`Failed to update price.` });
}
};
return (
<>
<H2Title
title={t`Credit Plan`}
description={t`Number of new credits allocated every ${recurringInterval}`}
/>
<StyledRow>
<StyledSelect
dropdownId="settings_billing-metered-price"
options={options}
value={selectedPriceId ?? currentMeteredPrice.stripePriceId}
onChange={handleChange}
disabled={isUpdating || isTrialing}
description={
isTrialing ? t`Please start your subscription first` : undefined
}
fullWidth
/>
{isChanged && (
<StyledButton
title={isUpgrade() ? t`Upgrade` : t`Downgrade`}
onClick={handleOpenConfirm}
variant="primary"
isLoading={isUpdating}
disabled={!isChanged}
accent={isUpgrade() ? 'blue' : 'danger'}
/>
)}
</StyledRow>
<ConfirmationModal
modalId={confirmModalId}
title={isUpgrade() ? t`Confirm upgrade` : t`Confirm downgrade`}
subtitle={t`Confirm changing your current credit plan.`}
confirmButtonText={isUpgrade() ? t`Upgrade` : t`Downgrade`}
confirmButtonAccent={isUpgrade() ? 'blue' : 'danger'}
loading={isUpdating}
onConfirmClick={handleConfirmClick}
<Select
dropdownId="settings-billing-metered-price"
options={options}
value={currentMeteredBillingPrice?.stripePriceId}
onChange={handleChange}
disabled={isUpdating || isTrialing}
description={
isTrialing ? t`Please start your subscription first` : undefined
}
/>
</>
);
@@ -1,29 +0,0 @@
import React from 'react';
import { Tag } from 'twenty-ui/components';
import { t } from '@lingui/core/macro';
import { BillingPlanKey } from '~/generated-metadata/graphql';
import styled from '@emotion/styled';
export type PlansTagsProps = {
plan: BillingPlanKey;
isTrialPeriod?: boolean;
};
const StyledTagsWrapper = styled.div`
display: flex;
gap: ${({ theme }) => theme.spacing(1)};
`;
export const PlansTags = ({ plan, isTrialPeriod = false }: PlansTagsProps) => {
const planDescriptor =
plan === BillingPlanKey.PRO
? { color: 'sky' as const, label: t`Pro` }
: { color: 'purple' as const, label: t`Organization` };
return (
<StyledTagsWrapper>
<Tag color={planDescriptor.color} text={planDescriptor.label} />
{isTrialPeriod && <Tag color="blue" text={t`Trial`} preventShrink />}
</StyledTagsWrapper>
);
};
@@ -1,10 +0,0 @@
import { gql } from '@apollo/client';
export const BILLING_PRICE_LICENSED_FRAGMENT = gql`
fragment BillingPriceLicensedFragment on BillingPriceLicensedDTO {
stripePriceId
unitAmount
recurringInterval
priceUsageType
}
`;
@@ -1,14 +0,0 @@
import { gql } from '@apollo/client';
export const BILLING_PRICE_METERED_FRAGMENT = gql`
fragment BillingPriceMeteredFragment on BillingPriceMeteredDTO {
priceUsageType
recurringInterval
stripePriceId
tiers {
flatAmount
unitAmount
upTo
}
}
`;
@@ -1,13 +0,0 @@
import { gql } from '@apollo/client';
import { BILLING_SUBSCRIPTION_SCHEDULE_PHASE_ITEM_FRAGMENT } from './billingSubscriptionSchedulePhaseItemFragment';
export const BILLING_SUBSCRIPTION_SCHEDULE_PHASE_FRAGMENT = gql`
fragment BillingSubscriptionSchedulePhaseFragment on BillingSubscriptionSchedulePhase {
start_date
end_date
items {
...BillingSubscriptionSchedulePhaseItemFragment
}
}
${BILLING_SUBSCRIPTION_SCHEDULE_PHASE_ITEM_FRAGMENT}
`;
@@ -1,8 +0,0 @@
import { gql } from '@apollo/client';
export const BILLING_SUBSCRIPTION_SCHEDULE_PHASE_ITEM_FRAGMENT = gql`
fragment BillingSubscriptionSchedulePhaseItemFragment on BillingSubscriptionSchedulePhaseItem {
price
quantity
}
`;
@@ -1,14 +0,0 @@
import { gql } from '@apollo/client';
export const CANCEL_SWITCH_BILLING_INTERVAL = gql`
mutation CancelSwitchBillingInterval {
cancelSwitchBillingInterval {
currentBillingSubscription {
...CurrentBillingSubscriptionFragment
}
billingSubscriptions {
...BillingSubscriptionFragment
}
}
}
`;
@@ -1,14 +0,0 @@
import { gql } from '@apollo/client';
export const CANCEL_SWITCH_METERED_PRICE = gql`
mutation CancelSwitchMeteredPrice {
cancelSwitchMeteredPrice {
currentBillingSubscription {
...CurrentBillingSubscriptionFragment
}
billingSubscriptions {
...BillingSubscriptionFragment
}
}
}
`;
@@ -1,14 +0,0 @@
import { gql } from '@apollo/client';
export const CANCEL_SWITCH_BILLING_PLAN = gql`
mutation CancelSwitchBillingPlan {
cancelSwitchBillingPlan {
currentBillingSubscription {
...CurrentBillingSubscriptionFragment
}
billingSubscriptions {
...BillingSubscriptionFragment
}
}
}
`;
@@ -1,14 +0,0 @@
import { gql } from '@apollo/client';
export const SET_METERED_SUBSCRIPTION_PRICE = gql`
mutation SetMeteredSubscriptionPrice($priceId: String!) {
setMeteredSubscriptionPrice(priceId: $priceId) {
currentBillingSubscription {
...CurrentBillingSubscriptionFragment
}
billingSubscriptions {
...BillingSubscriptionFragment
}
}
}
`;
@@ -1,14 +1,9 @@
import { gql } from '@apollo/client';
export const SWITCH_BILLING_PLAN = gql`
mutation SwitchBillingPlan {
switchBillingPlan {
currentBillingSubscription {
...CurrentBillingSubscriptionFragment
}
billingSubscriptions {
...BillingSubscriptionFragment
}
export const SWITCH_SUBSCRIPTION_TO_ENTERPRISE_PLAN = gql`
mutation SwitchSubscriptionToEnterprisePlan {
switchToEnterprisePlan {
success
}
}
`;
@@ -1,14 +1,9 @@
import { gql } from '@apollo/client';
export const SWITCH_SUBSCRIPTION_INTERVAL = gql`
mutation SwitchSubscriptionInterval {
switchSubscriptionInterval {
currentBillingSubscription {
...CurrentBillingSubscriptionFragment
}
billingSubscriptions {
...BillingSubscriptionFragment
}
export const SWITCH_SUBSCRIPTION_TO_YEARLY_INTERVAL = gql`
mutation SwitchSubscriptionToYearlyInterval {
switchToYearlyInterval {
success
}
}
`;
@@ -0,0 +1,9 @@
import { gql } from '@apollo/client';
export const UPDATE_SUBSCRIPTION_ITEM_PRICE = gql`
mutation UpdateSubscriptionItemPrice($priceId: String!) {
updateSubscriptionItemPrice(priceId: $priceId) {
success
}
}
`;
@@ -0,0 +1,19 @@
import { gql } from '@apollo/client';
export const BILLING_BASE_PRODUCT_PRICES = gql`
query billingBaseProductPrices {
plans {
planKey
baseProduct {
name
prices {
... on BillingPriceLicensedDTO {
unitAmount
stripePriceId
recurringInterval
}
}
}
}
}
`;
@@ -0,0 +1,12 @@
import { gql } from '@apollo/client';
export const LIST_AVAILABLE_METERED_BILLING_PRICES = gql`
query listAvailableMeteredBillingPrices {
listAvailableMeteredBillingPrices {
nickname
amount
stripePriceId
recurringInterval
}
}
`;
@@ -1,43 +0,0 @@
import { gql } from '@apollo/client';
import { BILLING_PRICE_METERED_FRAGMENT } from '@/billing/graphql/fragments/billingPriceMeteredFragment';
import { BILLING_PRICE_LICENSED_FRAGMENT } from '@/billing/graphql/fragments/billingPriceLicensedFragment';
export const LIST_PLANS = gql`
query listPlans {
listPlans {
planKey
licensedProducts {
name
description
images
metadata {
productKey
planKey
priceUsageBased
}
... on BillingLicensedProduct {
prices {
...BillingPriceLicensedFragment
}
}
}
meteredProducts {
name
description
images
metadata {
productKey
planKey
priceUsageBased
}
... on BillingMeteredProduct {
prices {
...BillingPriceMeteredFragment
}
}
}
}
}
${BILLING_PRICE_LICENSED_FRAGMENT}
${BILLING_PRICE_METERED_FRAGMENT}
`;
@@ -1,7 +0,0 @@
import { useAllBillingPrices } from '@/billing/hooks/useAllBillingPrices';
describe('useAllBillingPrices', () => {
it('should be a function', () => {
expect(typeof useAllBillingPrices).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useBaseLicensedPriceByPlanKeyAndInterval } from '@/billing/hooks/useBaseLicensedPriceByPlanKeyAndInterval';
describe('useBaseLicensedPriceByPlanKeyAndInterval', () => {
it('should be a function', () => {
expect(typeof useBaseLicensedPriceByPlanKeyAndInterval).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useBaseProductByPlanKey } from '@/billing/hooks/useBaseProductByPlanKey';
describe('useBaseProductByPlanKey', () => {
it('should be a function', () => {
expect(typeof useBaseProductByPlanKey).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useBillingWording } from '@/billing/hooks/useBillingWording';
describe('useBillingWording', () => {
it('should be a function', () => {
expect(typeof useBillingWording).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useCurrentBillingFlags } from '@/billing/hooks/useCurrentBillingFlags';
describe('useCurrentBillingFlags', () => {
it('should be a function', () => {
expect(typeof useCurrentBillingFlags).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useCurrentMetered } from '@/billing/hooks/useCurrentMetered';
describe('useCurrentMetered', () => {
it('should be a function', () => {
expect(typeof useCurrentMetered).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useCurrentPlan } from '@/billing/hooks/useCurrentPlan';
describe('useCurrentPlan', () => {
it('should be a function', () => {
expect(typeof useCurrentPlan).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useEndSubscriptionTrialPeriod } from '@/billing/hooks/useEndSubscriptionTrialPeriod';
describe('useEndSubscriptionTrialPeriod', () => {
it('should be a function', () => {
expect(typeof useEndSubscriptionTrialPeriod).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useFormatPrices } from '@/billing/hooks/useFormatPrices';
describe('useFormatPrices', () => {
it('should be a function', () => {
expect(typeof useFormatPrices).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useGetWorkflowNodeExecutionUsage } from '@/billing/hooks/useGetWorkflowNodeExecutionUsage';
describe('useGetWorkflowNodeExecutionUsage', () => {
it('should be a function', () => {
expect(typeof useGetWorkflowNodeExecutionUsage).toBe('function');
});
});
@@ -1,7 +0,0 @@
import { useHandleCheckoutSession } from '@/billing/hooks/useHandleCheckoutSession';
describe('useHandleCheckoutSession', () => {
it('should be a function', () => {
expect(typeof useHandleCheckoutSession).toBe('function');
});
});

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