Compare commits

..
Author SHA1 Message Date
Sonarly Claude Code 686b046c2a fix: pass instanceId or guard against missing context in CreateNewIndexRecordNoSelectionRecordCommand
https://sonarly.com/issue/6956?type=bug

`CreateNewIndexRecordNoSelectionRecordCommand` renders on dashboard show pages without a `ViewComponentInstanceContext` provider, causing `useCreateNewIndexRecord` to throw because neither `instanceId` prop nor context value is available for the `recordGroupDefinitionsComponentSelector`.
2026-03-25 22:27:42 +00:00
787 changed files with 13988 additions and 30277 deletions
+2 -15
View File
@@ -36,9 +36,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -53,16 +50,10 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
clickhouse:
image: clickhouse/clickhouse-server:25.8.8
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
CLICKHOUSE_PASSWORD: clickhousePassword
CLICKHOUSE_URL: "http://default:clickhousePassword@localhost:8123/twenty"
@@ -152,6 +143,7 @@ jobs:
set_env_var "CLICKHOUSE_PASSWORD" "clickhousePassword"
npx nx run twenty-server:database:init:prod
npx nx run twenty-server:database:migrate:prod
- name: Seed current branch database with test data
run: |
@@ -304,6 +296,7 @@ jobs:
set_env_var "CLICKHOUSE_PASSWORD" "clickhousePassword"
npx nx run twenty-server:database:init:prod
npx nx run twenty-server:database:migrate:prod
- name: Seed main branch database with test data
run: |
@@ -402,12 +395,6 @@ jobs:
# Clean up temp directory
rm -rf /tmp/current-branch-files
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Install OpenAPI Diff Tool
run: |
# Using the Java-based OpenAPITools/openapi-diff via Docker
+7 -17
View File
@@ -37,9 +37,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -54,13 +51,8 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
env:
PUBLISHABLE_PACKAGES: twenty-client-sdk twenty-sdk create-twenty-app
steps:
- name: Fetch custom Github Actions and base branch history
uses: actions/checkout@v4
@@ -74,13 +66,13 @@ jobs:
run: |
CI_VERSION="0.0.0-ci.$(date +%s)"
echo "CI_VERSION=$CI_VERSION" >> $GITHUB_ENV
npx nx run-many -t set-local-version -p $PUBLISHABLE_PACKAGES --releaseVersion=$CI_VERSION
npx nx run-many -t set-local-version -p twenty-sdk twenty-client-sdk create-twenty-app --releaseVersion=$CI_VERSION
- name: Build packages
run: |
for pkg in $PUBLISHABLE_PACKAGES; do
npx nx build $pkg
done
npx nx build twenty-sdk
npx nx build twenty-client-sdk
npx nx build create-twenty-app
- name: Install and start Verdaccio
run: |
@@ -97,13 +89,11 @@ jobs:
- name: Publish packages to local registry
run: |
yarn config set npmRegistryServer http://localhost:4873
yarn config set unsafeHttpWhitelist --json '["localhost"]'
yarn config set npmAuthToken ci-auth-token
npm set //localhost:4873/:_authToken "ci-auth-token"
for pkg in $PUBLISHABLE_PACKAGES; do
for pkg in twenty-sdk twenty-client-sdk create-twenty-app; do
cd packages/$pkg
yarn npm publish --tag ci
npm publish --registry http://localhost:4873 --tag ci
cd ../..
done
-6
View File
@@ -26,9 +26,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -43,9 +40,6 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
steps:
-6
View File
@@ -57,9 +57,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -74,9 +71,6 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
env:
+1 -15
View File
@@ -84,9 +84,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -101,9 +98,6 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
steps:
@@ -128,6 +122,7 @@ jobs:
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
npx nx run twenty-server:database:init:prod
npx nx run twenty-server:database:migrate:prod
- name: Worker / Run
run: |
timeout 30s npx nx run twenty-server:worker || exit_code=$?
@@ -232,9 +227,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -249,16 +241,10 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
clickhouse:
image: clickhouse/clickhouse-server:25.8.8
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
CLICKHOUSE_PASSWORD: clickhousePassword
CLICKHOUSE_URL: "http://default:clickhousePassword@localhost:8123/twenty"
@@ -27,11 +27,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Run compose
run: |
echo "Patching docker-compose.yml..."
@@ -102,11 +97,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Create frontend placeholder
run: |
mkdir -p packages/twenty-front/build
-3
View File
@@ -27,9 +27,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
-6
View File
@@ -30,9 +30,6 @@ jobs:
services:
postgres:
image: twentycrm/twenty-postgres-spilo
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
env:
PGUSER_SUPERUSER: postgres
PGPASSWORD_SUPERUSER: postgres
@@ -47,9 +44,6 @@ jobs:
--health-retries 5
redis:
image: redis
credentials:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
ports:
- 6379:6379
steps:
@@ -17,12 +17,6 @@ jobs:
with:
ref: ${{ github.event.client_payload.pr_head_sha }}
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Run compose setup
run: |
echo "Patching docker-compose.yml..."
-940
View File
File diff suppressed because one or more lines are too long
+942
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -6,4 +6,4 @@ enableInlineHunks: true
nodeLinker: node-modules
yarnPath: .yarn/releases/yarn-4.13.0.cjs
yarnPath: .yarn/releases/yarn-4.9.2.cjs
+1 -2
View File
@@ -175,7 +175,7 @@
},
"license": "AGPL-3.0",
"name": "twenty",
"packageManager": "yarn@4.13.0",
"packageManager": "yarn@4.9.2",
"resolutions": {
"graphql": "16.8.1",
"type-fest": "4.10.1",
@@ -203,7 +203,6 @@
"packages/twenty-utils",
"packages/twenty-zapier",
"packages/twenty-website",
"packages/twenty-website-new",
"packages/twenty-docs",
"packages/twenty-e2e-testing",
"packages/twenty-shared",
+11 -3
View File
@@ -41,7 +41,7 @@ cd my-twenty-app
# Or do it manually:
yarn twenty server start # Start local Twenty server
yarn twenty remote add http://localhost:2020 --as local # Authenticate via OAuth
yarn twenty remote add --local # Authenticate via OAuth
# Start dev mode: watches, builds, and syncs local changes to your workspace
# (also auto-generates typed CoreApiClient — MetadataApiClient ships pre-built — both available via `twenty-client-sdk`)
@@ -122,10 +122,18 @@ yarn twenty server reset # Wipe all data and start fresh
The server is pre-seeded with a workspace and user (`tim@apple.dev` / `tim@apple.dev`).
### How to use a local Twenty instance
If you're already running a local Twenty instance, you can connect to it instead of using Docker. Pass the port your local server is listening on (default: `3000`):
```bash
npx create-twenty-app@latest my-app --port 3000
```
## Next steps
- Run `yarn twenty help` to see all available commands.
- Use `yarn twenty remote add <url>` to authenticate with your Twenty workspace via OAuth.
- Use `yarn twenty remote add --local` to authenticate with your Twenty workspace via OAuth.
- Explore the generated project and add your first entity with `yarn twenty add` (logic functions, front components, objects, roles, views, navigation menu items, skills).
- Use `yarn twenty dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
- `CoreApiClient` is auto-generated by `yarn twenty dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient } from 'twenty-client-sdk/core'` and `import { MetadataApiClient } from 'twenty-client-sdk/metadata'`.
@@ -169,7 +177,7 @@ Our team reviews contributions for quality, security, and reusability before mer
## Troubleshooting
- Server not starting: check Docker is running (`docker info`), then try `yarn twenty server logs`.
- Auth not working: make sure you're logged in to Twenty in the browser first, then run `yarn twenty remote add <url>`.
- Auth not working: make sure you're logged in to Twenty in the browser first, then run `yarn twenty remote add --local`.
- Types not generated: ensure `yarn twenty dev` is running — it auto-generates the typed client.
## Contributing
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "create-twenty-app",
"version": "0.8.0-canary.5",
"version": "0.8.0-canary.2",
"description": "Command-line interface to create Twenty application",
"main": "dist/cli.cjs",
"bin": "dist/cli.cjs",
@@ -36,7 +36,6 @@
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.startcase": "^4.4.0",
"twenty-sdk": "workspace:*",
"uuid": "^13.0.0"
},
"devDependencies": {
@@ -46,6 +45,7 @@
"@types/lodash.kebabcase": "^4.1.7",
"@types/lodash.startcase": "^4",
"@types/node": "^20.0.0",
"twenty-sdk": "workspace:*",
"twenty-shared": "workspace:*",
"typescript": "^5.9.2",
"vite": "^7.0.0",
+8
View File
@@ -31,6 +31,10 @@ const program = new Command(packageJson.name)
'--skip-local-instance',
'Skip the local Twenty instance setup prompt',
)
.option(
'-p, --port <port>',
'Port of an existing Twenty server (skips Docker setup)',
)
.helpOption('-h, --help', 'Display this help message.')
.action(
async (
@@ -42,6 +46,7 @@ const program = new Command(packageJson.name)
displayName?: string;
description?: string;
skipLocalInstance?: boolean;
port?: string;
},
) => {
const modeFlags = [options?.exhaustive, options?.minimal].filter(Boolean);
@@ -71,6 +76,8 @@ const program = new Command(packageJson.name)
const mode: ScaffoldingMode = options?.minimal ? 'minimal' : 'exhaustive';
const port = options?.port ? parseInt(options.port, 10) : undefined;
await new CreateAppCommand().execute({
directory,
mode,
@@ -78,6 +85,7 @@ const program = new Command(packageJson.name)
displayName: options?.displayName,
description: options?.description,
skipLocalInstance: options?.skipLocalInstance,
port,
});
},
);
@@ -1,18 +1,18 @@
import { basename } from 'path';
import { copyBaseApplicationProject } from '@/utils/app-template';
import { convertToLabel } from '@/utils/convert-to-label';
import { install } from '@/utils/install';
import {
type LocalInstanceResult,
setupLocalInstance,
} from '@/utils/setup-local-instance';
import { tryGitInit } from '@/utils/try-git-init';
import chalk from 'chalk';
import * as fs from 'fs-extra';
import inquirer from 'inquirer';
import kebabCase from 'lodash.kebabcase';
import { execSync } from 'node:child_process';
import * as path from 'path';
import { basename } from 'path';
import {
authLoginOAuth,
serverStart,
type ServerStartResult,
} from 'twenty-sdk/cli';
import { isDefined } from 'twenty-shared/utils';
import {
@@ -29,6 +29,7 @@ type CreateAppOptions = {
displayName?: string;
description?: string;
skipLocalInstance?: boolean;
port?: number;
};
export class CreateAppCommand {
@@ -59,22 +60,17 @@ export class CreateAppCommand {
await tryGitInit(appDirectory);
let serverResult: ServerStartResult | undefined;
let localResult: LocalInstanceResult = { running: false };
if (!options.skipLocalInstance) {
const startResult = await serverStart({
onProgress: (message: string) => console.log(chalk.gray(message)),
});
localResult = await setupLocalInstance(appDirectory, options.port);
if (startResult.success) {
serverResult = startResult.data;
await this.connectToLocal(serverResult.url);
} else {
console.log(chalk.yellow(`\n${startResult.error.message}`));
if (localResult.running && localResult.serverUrl) {
await this.connectToLocal(appDirectory, localResult.serverUrl);
}
}
this.logSuccess(appDirectory, serverResult);
this.logSuccess(appDirectory, localResult);
} catch (error) {
console.error(
chalk.red('\nCreate application failed:'),
@@ -201,20 +197,15 @@ export class CreateAppCommand {
);
}
private async connectToLocal(serverUrl: string): Promise<void> {
private async connectToLocal(
appDirectory: string,
serverUrl: string,
): Promise<void> {
try {
const result = await authLoginOAuth({
apiUrl: serverUrl,
remote: 'local',
execSync(`yarn twenty remote add ${serverUrl} --as local`, {
cwd: appDirectory,
stdio: 'inherit',
});
if (!result.success) {
console.log(
chalk.yellow(
'Authentication skipped. Run `yarn twenty remote add --local` manually.',
),
);
}
} catch {
console.log(
chalk.yellow(
@@ -226,14 +217,14 @@ export class CreateAppCommand {
private logSuccess(
appDirectory: string,
serverResult?: ServerStartResult,
localResult: LocalInstanceResult,
): void {
const dirName = basename(appDirectory);
console.log(chalk.blue('\nApplication created. Next steps:'));
console.log(chalk.gray(`- cd ${dirName}`));
if (!serverResult) {
if (!localResult.running) {
console.log(
chalk.gray(
'- yarn twenty remote add --local # Authenticate with Twenty',
@@ -0,0 +1,106 @@
import chalk from 'chalk';
import { execSync } from 'node:child_process';
const LOCAL_PORTS = [2020, 3000];
// Minimal health check — the full implementation lives in twenty-sdk
const isServerReady = async (port: number): Promise<boolean> => {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 3000);
try {
const response = await fetch(`http://localhost:${port}/healthz`, {
signal: controller.signal,
});
const body = await response.json();
return body.status === 'ok';
} catch {
return false;
} finally {
clearTimeout(timeoutId);
}
};
const detectRunningServer = async (
preferredPort?: number,
): Promise<number | null> => {
const ports = preferredPort ? [preferredPort] : LOCAL_PORTS;
for (const port of ports) {
if (await isServerReady(port)) {
return port;
}
}
return null;
};
export type LocalInstanceResult = {
running: boolean;
serverUrl?: string;
};
export const setupLocalInstance = async (
appDirectory: string,
preferredPort?: number,
): Promise<LocalInstanceResult> => {
const detectedPort = await detectRunningServer(preferredPort);
if (detectedPort) {
const serverUrl = `http://localhost:${detectedPort}`;
console.log(chalk.green(`Twenty server detected on ${serverUrl}.\n`));
return { running: true, serverUrl };
}
if (preferredPort) {
console.log(
chalk.yellow(
`No Twenty server found on port ${preferredPort}.\n` +
'Start your server and run `yarn twenty remote add --local` manually.\n',
),
);
return { running: false };
}
console.log(chalk.blue('Setting up local Twenty instance...\n'));
try {
execSync('yarn twenty server start', {
cwd: appDirectory,
stdio: 'inherit',
});
} catch {
return { running: false };
}
console.log(chalk.gray('Waiting for Twenty to be ready...\n'));
const startTime = Date.now();
const timeoutMs = 180 * 1000;
while (Date.now() - startTime < timeoutMs) {
if (await isServerReady(LOCAL_PORTS[0])) {
const serverUrl = `http://localhost:${LOCAL_PORTS[0]}`;
console.log(chalk.green(`Server running on '${serverUrl}'\n`));
return { running: true, serverUrl };
}
await new Promise((resolve) => setTimeout(resolve, 2000));
}
console.log(
chalk.yellow(
'Twenty server did not become healthy in time.\n',
"Check: 'yarn twenty server logs'\n",
),
);
return { running: false };
};
@@ -5,7 +5,7 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
First, authenticate to your workspace:
```bash
yarn twenty remote add http://localhost:2020 --as local
yarn twenty remote add --local
```
Then, start development mode to sync your app and watch for changes:
@@ -22,7 +22,7 @@ Run `yarn twenty help` to list all available commands. Common commands:
```bash
# Remotes & Authentication
yarn twenty remote add http://localhost:2020 --as local # Authenticate with Twenty
yarn twenty remote add --local # Authenticate with Twenty
yarn twenty remote status # Check auth status
yarn twenty remote switch # Switch default remote
yarn twenty remote list # List all configured remotes
+2 -2
View File
@@ -5,7 +5,7 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
First, authenticate to your workspace:
```bash
yarn twenty remote add http://localhost:2020 --as local
yarn twenty remote add --local
```
Then, start development mode to sync your app and watch for changes:
@@ -22,7 +22,7 @@ Run `yarn twenty help` to list all available commands. Common commands:
```bash
# Remotes & Authentication
yarn twenty remote add http://localhost:2020 --as local # Authenticate with Twenty
yarn twenty remote add --local # Authenticate with Twenty
yarn twenty remote status # Check auth status
yarn twenty remote switch # Switch default remote
yarn twenty remote list # List all configured remotes
@@ -5,7 +5,7 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
First, authenticate to your workspace:
```bash
yarn twenty remote add http://localhost:2020 --as local
yarn twenty remote add --local
```
Then, start development mode to sync your app and watch for changes:
@@ -22,7 +22,7 @@ Run `yarn twenty help` to list all available commands. Common commands:
```bash
# Remotes & Authentication
yarn twenty remote add http://localhost:2020 --as local # Authenticate with Twenty
yarn twenty remote add --local # Authenticate with Twenty
yarn twenty remote status # Check auth status
yarn twenty remote switch # Switch default remote
yarn twenty remote list # List all configured remotes
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "twenty-client-sdk",
"version": "0.8.0-canary.5",
"version": "0.7.0-canary.0",
"sideEffects": false,
"license": "AGPL-3.0",
"scripts": {
@@ -343,7 +343,6 @@ type Field {
defaultValue: JSON
options: JSON
settings: JSON
objectMetadataId: UUID!
isLabelSyncedWithName: Boolean
morphId: UUID
createdAt: DateTime!
@@ -541,7 +540,6 @@ input FieldFilter {
isActive: BooleanFieldComparison
isSystem: BooleanFieldComparison
isUIReadOnly: BooleanFieldComparison
objectMetadataId: UUIDFilterComparison
}
input IndexFilter {
@@ -780,7 +778,8 @@ type Workspace {
viewGroups: [ViewGroup!]
viewSorts: [ViewSort!]
metadataVersion: Float!
databaseSchema: String
databaseUrl: String!
databaseSchema: String!
subdomain: String!
customDomain: String
isGoogleAuthEnabled: Boolean!
@@ -1748,7 +1747,6 @@ enum FeatureFlagKey {
IS_CONNECTED_ACCOUNT_MIGRATED
IS_GRAPHQL_QUERY_TIMING_ENABLED
IS_RECORD_TABLE_WIDGET_ENABLED
IS_DATASOURCE_MIGRATED
}
type ClientConfig {
@@ -2275,11 +2273,6 @@ type FieldConnection {
edges: [FieldEdge!]!
}
type LogicFunctionLogs {
"""Execution Logs"""
logs: String!
}
type DeleteTwoFactorAuthenticationMethod {
"""Boolean that confirms query was dispatched"""
success: Boolean!
@@ -2600,6 +2593,11 @@ type UsageAnalytics {
userDailyUsage: UsageUserDaily
}
type LogicFunctionLogs {
"""Execution Logs"""
logs: String!
}
type FrontComponent {
id: UUID!
name: String!
@@ -3092,7 +3090,6 @@ enum AllMetadataName {
navigationMenuItem
permissionFlag
objectPermission
fieldPermission
frontComponent
webhook
}
@@ -3504,7 +3501,6 @@ type Mutation {
createViewGroup(input: CreateViewGroupInput!): ViewGroup!
createManyViewGroups(inputs: [CreateViewGroupInput!]!): [ViewGroup!]!
updateViewGroup(input: UpdateViewGroupInput!): ViewGroup!
updateManyViewGroups(inputs: [UpdateViewGroupInput!]!): [ViewGroup!]!
deleteViewGroup(input: DeleteViewGroupInput!): ViewGroup!
destroyViewGroup(input: DestroyViewGroupInput!): ViewGroup!
updateMessageFolder(input: UpdateMessageFolderInput!): MessageFolder!
@@ -4276,8 +4272,8 @@ input CreateFieldInput {
defaultValue: JSON
options: JSON
settings: JSON
objectMetadataId: UUID!
isLabelSyncedWithName: Boolean
objectMetadataId: UUID!
isRemoteCreation: Boolean
relationCreationPayload: JSON
morphRelationsCreationPayload: [JSON!]
@@ -4305,7 +4301,6 @@ input UpdateFieldInput {
defaultValue: JSON
options: JSON
settings: JSON
objectMetadataId: UUID
isLabelSyncedWithName: Boolean
morphRelationsUpdatePayload: [JSON!]
}
@@ -296,7 +296,6 @@ export interface Field {
defaultValue?: Scalars['JSON']
options?: Scalars['JSON']
settings?: Scalars['JSON']
objectMetadataId: Scalars['UUID']
isLabelSyncedWithName?: Scalars['Boolean']
morphId?: Scalars['UUID']
createdAt: Scalars['DateTime']
@@ -565,7 +564,8 @@ export interface Workspace {
viewGroups?: ViewGroup[]
viewSorts?: ViewSort[]
metadataVersion: Scalars['Float']
databaseSchema?: Scalars['String']
databaseUrl: Scalars['String']
databaseSchema: Scalars['String']
subdomain: Scalars['String']
customDomain?: Scalars['String']
isGoogleAuthEnabled: Scalars['Boolean']
@@ -1427,7 +1427,7 @@ export interface PublicFeatureFlag {
__typename: 'PublicFeatureFlag'
}
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_APPLICATION_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_DASHBOARD_V2_ENABLED' | 'IS_ATTACHMENT_MIGRATED' | 'IS_NOTE_TARGET_MIGRATED' | 'IS_TASK_TARGET_MIGRATED' | 'IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_ENABLED' | 'IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_GRAPHQL_QUERY_TIMING_ENABLED' | 'IS_RECORD_TABLE_WIDGET_ENABLED' | 'IS_DATASOURCE_MIGRATED'
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_APPLICATION_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_DASHBOARD_V2_ENABLED' | 'IS_ATTACHMENT_MIGRATED' | 'IS_NOTE_TARGET_MIGRATED' | 'IS_TASK_TARGET_MIGRATED' | 'IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_ENABLED' | 'IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_GRAPHQL_QUERY_TIMING_ENABLED' | 'IS_RECORD_TABLE_WIDGET_ENABLED'
export interface ClientConfig {
appVersion?: Scalars['String']
@@ -1937,12 +1937,6 @@ export interface FieldConnection {
__typename: 'FieldConnection'
}
export interface LogicFunctionLogs {
/** Execution Logs */
logs: Scalars['String']
__typename: 'LogicFunctionLogs'
}
export interface DeleteTwoFactorAuthenticationMethod {
/** Boolean that confirms query was dispatched */
success: Scalars['Boolean']
@@ -2304,6 +2298,12 @@ export interface UsageAnalytics {
__typename: 'UsageAnalytics'
}
export interface LogicFunctionLogs {
/** Execution Logs */
logs: Scalars['String']
__typename: 'LogicFunctionLogs'
}
export interface FrontComponent {
id: Scalars['UUID']
name: Scalars['String']
@@ -2676,7 +2676,7 @@ export interface CollectionHash {
__typename: 'CollectionHash'
}
export type AllMetadataName = 'fieldMetadata' | 'objectMetadata' | 'view' | 'viewField' | 'viewFieldGroup' | 'viewGroup' | 'viewSort' | 'rowLevelPermissionPredicate' | 'rowLevelPermissionPredicateGroup' | 'viewFilterGroup' | 'index' | 'logicFunction' | 'viewFilter' | 'role' | 'roleTarget' | 'agent' | 'skill' | 'pageLayout' | 'pageLayoutWidget' | 'pageLayoutTab' | 'commandMenuItem' | 'navigationMenuItem' | 'permissionFlag' | 'objectPermission' | 'fieldPermission' | 'frontComponent' | 'webhook'
export type AllMetadataName = 'fieldMetadata' | 'objectMetadata' | 'view' | 'viewField' | 'viewFieldGroup' | 'viewGroup' | 'viewSort' | 'rowLevelPermissionPredicate' | 'rowLevelPermissionPredicateGroup' | 'viewFilterGroup' | 'index' | 'logicFunction' | 'viewFilter' | 'role' | 'roleTarget' | 'agent' | 'skill' | 'pageLayout' | 'pageLayoutWidget' | 'pageLayoutTab' | 'commandMenuItem' | 'navigationMenuItem' | 'permissionFlag' | 'objectPermission' | 'frontComponent' | 'webhook'
export interface MinimalObjectMetadata {
id: Scalars['UUID']
@@ -2954,7 +2954,6 @@ export interface Mutation {
createViewGroup: ViewGroup
createManyViewGroups: ViewGroup[]
updateViewGroup: ViewGroup
updateManyViewGroups: ViewGroup[]
deleteViewGroup: ViewGroup
destroyViewGroup: ViewGroup
updateMessageFolder: MessageFolder
@@ -3361,7 +3360,6 @@ export interface FieldGenqlSelection{
defaultValue?: boolean | number
options?: boolean | number
settings?: boolean | number
objectMetadataId?: boolean | number
isLabelSyncedWithName?: boolean | number
morphId?: boolean | number
createdAt?: boolean | number
@@ -3478,7 +3476,7 @@ export interface ObjectGenqlSelection{
__scalar?: boolean | number
}
export interface FieldFilter {and?: (FieldFilter[] | null),or?: (FieldFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null),isActive?: (BooleanFieldComparison | null),isSystem?: (BooleanFieldComparison | null),isUIReadOnly?: (BooleanFieldComparison | null),objectMetadataId?: (UUIDFilterComparison | null)}
export interface FieldFilter {and?: (FieldFilter[] | null),or?: (FieldFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null),isActive?: (BooleanFieldComparison | null),isSystem?: (BooleanFieldComparison | null),isUIReadOnly?: (BooleanFieldComparison | null)}
export interface IndexFilter {and?: (IndexFilter[] | null),or?: (IndexFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null)}
@@ -3655,6 +3653,7 @@ export interface WorkspaceGenqlSelection{
viewGroups?: ViewGroupGenqlSelection
viewSorts?: ViewSortGenqlSelection
metadataVersion?: boolean | number
databaseUrl?: boolean | number
databaseSchema?: boolean | number
subdomain?: boolean | number
customDomain?: boolean | number
@@ -5097,13 +5096,6 @@ export interface FieldConnectionGenqlSelection{
__scalar?: boolean | number
}
export interface LogicFunctionLogsGenqlSelection{
/** Execution Logs */
logs?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface DeleteTwoFactorAuthenticationMethodGenqlSelection{
/** Boolean that confirms query was dispatched */
success?: boolean | number
@@ -5509,6 +5501,13 @@ export interface UsageAnalyticsGenqlSelection{
__scalar?: boolean | number
}
export interface LogicFunctionLogsGenqlSelection{
/** Execution Logs */
logs?: boolean | number
__typename?: boolean | number
__scalar?: boolean | number
}
export interface FrontComponentGenqlSelection{
id?: boolean | number
name?: boolean | number
@@ -6208,7 +6207,6 @@ export interface MutationGenqlSelection{
createViewGroup?: (ViewGroupGenqlSelection & { __args: {input: CreateViewGroupInput} })
createManyViewGroups?: (ViewGroupGenqlSelection & { __args: {inputs: CreateViewGroupInput[]} })
updateViewGroup?: (ViewGroupGenqlSelection & { __args: {input: UpdateViewGroupInput} })
updateManyViewGroups?: (ViewGroupGenqlSelection & { __args: {inputs: UpdateViewGroupInput[]} })
deleteViewGroup?: (ViewGroupGenqlSelection & { __args: {input: DeleteViewGroupInput} })
destroyViewGroup?: (ViewGroupGenqlSelection & { __args: {input: DestroyViewGroupInput} })
updateMessageFolder?: (MessageFolderGenqlSelection & { __args: {input: UpdateMessageFolderInput} })
@@ -6529,7 +6527,7 @@ export interface CreateOneFieldMetadataInput {
/** The record to create */
field: CreateFieldInput}
export interface CreateFieldInput {type: FieldMetadataType,name: Scalars['String'],label: Scalars['String'],description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isCustom?: (Scalars['Boolean'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),objectMetadataId: Scalars['UUID'],isLabelSyncedWithName?: (Scalars['Boolean'] | null),isRemoteCreation?: (Scalars['Boolean'] | null),relationCreationPayload?: (Scalars['JSON'] | null),morphRelationsCreationPayload?: (Scalars['JSON'][] | null)}
export interface CreateFieldInput {type: FieldMetadataType,name: Scalars['String'],label: Scalars['String'],description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isCustom?: (Scalars['Boolean'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),objectMetadataId: Scalars['UUID'],isRemoteCreation?: (Scalars['Boolean'] | null),relationCreationPayload?: (Scalars['JSON'] | null),morphRelationsCreationPayload?: (Scalars['JSON'][] | null)}
export interface UpdateOneFieldMetadataInput {
/** The id of the record to update */
@@ -6537,7 +6535,7 @@ id: Scalars['UUID'],
/** The record to update */
update: UpdateFieldInput}
export interface UpdateFieldInput {universalIdentifier?: (Scalars['String'] | null),name?: (Scalars['String'] | null),label?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),objectMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),morphRelationsUpdatePayload?: (Scalars['JSON'][] | null)}
export interface UpdateFieldInput {universalIdentifier?: (Scalars['String'] | null),name?: (Scalars['String'] | null),label?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),morphRelationsUpdatePayload?: (Scalars['JSON'][] | null)}
export interface DeleteOneFieldInput {
/** The id of the field to delete. */
@@ -8049,14 +8047,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const LogicFunctionLogs_possibleTypes: string[] = ['LogicFunctionLogs']
export const isLogicFunctionLogs = (obj?: { __typename?: any } | null): obj is LogicFunctionLogs => {
if (!obj?.__typename) throw new Error('__typename is missing in "isLogicFunctionLogs"')
return LogicFunctionLogs_possibleTypes.includes(obj.__typename)
}
const DeleteTwoFactorAuthenticationMethod_possibleTypes: string[] = ['DeleteTwoFactorAuthenticationMethod']
export const isDeleteTwoFactorAuthenticationMethod = (obj?: { __typename?: any } | null): obj is DeleteTwoFactorAuthenticationMethod => {
if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteTwoFactorAuthenticationMethod"')
@@ -8441,6 +8431,14 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
const LogicFunctionLogs_possibleTypes: string[] = ['LogicFunctionLogs']
export const isLogicFunctionLogs = (obj?: { __typename?: any } | null): obj is LogicFunctionLogs => {
if (!obj?.__typename) throw new Error('__typename is missing in "isLogicFunctionLogs"')
return LogicFunctionLogs_possibleTypes.includes(obj.__typename)
}
const FrontComponent_possibleTypes: string[] = ['FrontComponent']
export const isFrontComponent = (obj?: { __typename?: any } | null): obj is FrontComponent => {
if (!obj?.__typename) throw new Error('__typename is missing in "isFrontComponent"')
@@ -9157,8 +9155,7 @@ export const enumFeatureFlagKey = {
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED: 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' as const,
IS_CONNECTED_ACCOUNT_MIGRATED: 'IS_CONNECTED_ACCOUNT_MIGRATED' as const,
IS_GRAPHQL_QUERY_TIMING_ENABLED: 'IS_GRAPHQL_QUERY_TIMING_ENABLED' as const,
IS_RECORD_TABLE_WIDGET_ENABLED: 'IS_RECORD_TABLE_WIDGET_ENABLED' as const,
IS_DATASOURCE_MIGRATED: 'IS_DATASOURCE_MIGRATED' as const
IS_RECORD_TABLE_WIDGET_ENABLED: 'IS_RECORD_TABLE_WIDGET_ENABLED' as const
}
export const enumConfigSource = {
@@ -9428,7 +9425,6 @@ export const enumAllMetadataName = {
navigationMenuItem: 'navigationMenuItem' as const,
permissionFlag: 'permissionFlag' as const,
objectPermission: 'objectPermission' as const,
fieldPermission: 'fieldPermission' as const,
frontComponent: 'frontComponent' as const,
webhook: 'webhook' as const
}
@@ -63,8 +63,8 @@ export default {
210,
227,
244,
282,
283,
284,
299,
300,
325,
@@ -777,9 +777,6 @@ export default {
"settings": [
15
],
"objectMetadataId": [
3
],
"isLabelSyncedWithName": [
6
],
@@ -1167,9 +1164,6 @@ export default {
"isUIReadOnly": [
43
],
"objectMetadataId": [
42
],
"__typename": [
1
]
@@ -1637,6 +1631,9 @@ export default {
"metadataVersion": [
11
],
"databaseUrl": [
1
],
"databaseSchema": [
1
],
@@ -4461,14 +4458,6 @@ export default {
1
]
},
"LogicFunctionLogs": {
"logs": [
1
],
"__typename": [
1
]
},
"DeleteTwoFactorAuthenticationMethod": {
"success": [
6
@@ -4514,10 +4503,10 @@ export default {
},
"AuthTokenPair": {
"accessOrWorkspaceAgnosticToken": [
251
250
],
"refreshToken": [
251
250
],
"__typename": [
1
@@ -4525,7 +4514,7 @@ export default {
},
"AvailableWorkspacesAndAccessTokens": {
"tokens": [
252
251
],
"availableWorkspaces": [
224
@@ -4577,10 +4566,10 @@ export default {
},
"SignUp": {
"loginToken": [
251
250
],
"workspace": [
257
256
],
"__typename": [
1
@@ -4588,7 +4577,7 @@ export default {
},
"TransientToken": {
"transientToken": [
251
250
],
"__typename": [
1
@@ -4610,7 +4599,7 @@ export default {
},
"VerifyEmailAndGetLoginToken": {
"loginToken": [
251
250
],
"workspaceUrls": [
157
@@ -4629,7 +4618,7 @@ export default {
},
"AuthTokens": {
"tokens": [
252
251
],
"__typename": [
1
@@ -4637,7 +4626,7 @@ export default {
},
"LoginToken": {
"loginToken": [
251
250
],
"__typename": [
1
@@ -4667,10 +4656,10 @@ export default {
},
"Impersonate": {
"loginToken": [
251
250
],
"workspace": [
257
256
],
"__typename": [
1
@@ -4700,10 +4689,10 @@ export default {
},
"ApplicationTokenPair": {
"applicationAccessToken": [
251
250
],
"applicationRefreshToken": [
251
250
],
"__typename": [
1
@@ -4775,7 +4764,7 @@ export default {
1
],
"fields": [
272
271
],
"__typename": [
1
@@ -4872,10 +4861,10 @@ export default {
6
],
"objectPermissions": [
276
275
],
"fieldPermissions": [
277
276
],
"permissionFlags": [
1
@@ -4925,19 +4914,19 @@ export default {
1
],
"objects": [
273
],
"fields": [
272
],
"fields": [
271
],
"logicFunctions": [
274
273
],
"frontComponents": [
275
274
],
"defaultRole": [
278
277
],
"sourcePackage": [
1
@@ -4997,13 +4986,13 @@ export default {
1
],
"driver": [
283
282
],
"status": [
284
283
],
"verificationRecords": [
281
280
],
"verifiedAt": [
4
@@ -5050,7 +5039,7 @@ export default {
1
],
"location": [
286
285
],
"__typename": [
1
@@ -5078,13 +5067,13 @@ export default {
},
"ImapSmtpCaldavConnectionParameters": {
"IMAP": [
288
287
],
"SMTP": [
288
287
],
"CALDAV": [
288
287
],
"__typename": [
1
@@ -5104,7 +5093,7 @@ export default {
3
],
"connectionParameters": [
289
288
],
"__typename": [
1
@@ -5168,7 +5157,7 @@ export default {
1
],
"dailyUsage": [
294
293
],
"__typename": [
1
@@ -5176,13 +5165,13 @@ export default {
},
"UsageAnalytics": {
"usageByUser": [
293
292
],
"usageByOperationType": [
293
292
],
"timeSeries": [
294
293
],
"periodStart": [
4
@@ -5191,7 +5180,15 @@ export default {
4
],
"userDailyUsage": [
295
294
],
"__typename": [
1
]
},
"LogicFunctionLogs": {
"logs": [
1
],
"__typename": [
1
@@ -5238,7 +5235,7 @@ export default {
6
],
"applicationTokenPair": [
270
269
],
"__typename": [
1
@@ -6659,7 +6656,7 @@ export default {
}
],
"checkUserExists": [
265,
264,
{
"email": [
1,
@@ -6671,7 +6668,7 @@ export default {
}
],
"checkWorkspaceInviteHashIsValid": [
266,
265,
{
"inviteHash": [
1,
@@ -6689,7 +6686,7 @@ export default {
}
],
"validatePasswordResetToken": [
260,
259,
{
"passwordResetToken": [
1,
@@ -6772,7 +6769,7 @@ export default {
220
],
"getConnectedImapSmtpCaldavAccount": [
290,
289,
{
"id": [
3,
@@ -6781,7 +6778,7 @@ export default {
}
],
"getAutoCompleteAddress": [
285,
284,
{
"address": [
1,
@@ -6800,7 +6797,7 @@ export default {
}
],
"getAddressDetails": [
287,
286,
{
"placeId": [
1,
@@ -6892,19 +6889,19 @@ export default {
}
],
"getPostgresCredentials": [
292
291
],
"findManyPublicDomains": [
280
],
"getEmailingDomains": [
282
],
"findManyMarketplaceApps": [
279
],
"getEmailingDomains": [
281
],
"findManyMarketplaceApps": [
278
],
"findOneMarketplaceApp": [
279,
278,
{
"universalIdentifier": [
1,
@@ -6927,7 +6924,7 @@ export default {
}
],
"getUsageAnalytics": [
296,
295,
{
"input": [
365
@@ -8133,15 +8130,6 @@ export default {
]
}
],
"updateManyViewGroups": [
56,
{
"inputs": [
450,
"[UpdateViewGroupInput!]!"
]
}
],
"deleteViewGroup": [
56,
{
@@ -8312,7 +8300,7 @@ export default {
}
],
"getAuthorizationUrlForSSO": [
255,
254,
{
"input": [
466,
@@ -8321,7 +8309,7 @@ export default {
}
],
"getLoginTokenFromCredentials": [
264,
263,
{
"email": [
1,
@@ -8347,7 +8335,7 @@ export default {
}
],
"signIn": [
253,
252,
{
"email": [
1,
@@ -8369,7 +8357,7 @@ export default {
}
],
"verifyEmailAndGetLoginToken": [
261,
260,
{
"emailVerificationToken": [
1,
@@ -8389,7 +8377,7 @@ export default {
}
],
"verifyEmailAndGetWorkspaceAgnosticToken": [
253,
252,
{
"emailVerificationToken": [
1,
@@ -8405,7 +8393,7 @@ export default {
}
],
"getAuthTokensFromOTP": [
263,
262,
{
"otp": [
1,
@@ -8425,7 +8413,7 @@ export default {
}
],
"signUp": [
253,
252,
{
"email": [
1,
@@ -8447,7 +8435,7 @@ export default {
}
],
"signUpInWorkspace": [
258,
257,
{
"email": [
1,
@@ -8478,13 +8466,13 @@ export default {
}
],
"signUpInNewWorkspace": [
258
257
],
"generateTransientToken": [
259
258
],
"getAuthTokensFromLoginToken": [
263,
262,
{
"loginToken": [
1,
@@ -8497,7 +8485,7 @@ export default {
}
],
"authorizeApp": [
250,
249,
{
"clientId": [
1,
@@ -8519,7 +8507,7 @@ export default {
}
],
"renewToken": [
263,
262,
{
"appToken": [
1,
@@ -8528,7 +8516,7 @@ export default {
}
],
"generateApiKeyToken": [
262,
261,
{
"apiKeyId": [
3,
@@ -8541,7 +8529,7 @@ export default {
}
],
"emailPasswordResetLink": [
254,
253,
{
"email": [
1,
@@ -8553,7 +8541,7 @@ export default {
}
],
"updatePasswordViaResetToken": [
256,
255,
{
"passwordResetToken": [
1,
@@ -8654,7 +8642,7 @@ export default {
}
],
"initiateOTPProvisioning": [
248,
247,
{
"loginToken": [
1,
@@ -8667,10 +8655,10 @@ export default {
}
],
"initiateOTPProvisioningForAuthenticatedUser": [
248
247
],
"deleteTwoFactorAuthenticationMethod": [
247,
246,
{
"twoFactorAuthenticationMethodId": [
3,
@@ -8679,7 +8667,7 @@ export default {
}
],
"verifyTwoFactorAuthenticationMethodForAuthenticatedUser": [
249,
248,
{
"otp": [
1,
@@ -8785,7 +8773,7 @@ export default {
}
],
"impersonate": [
267,
266,
{
"userId": [
3,
@@ -8807,7 +8795,7 @@ export default {
}
],
"saveImapSmtpCaldavAccount": [
291,
290,
{
"accountOwnerId": [
3,
@@ -9010,13 +8998,13 @@ export default {
}
],
"enablePostgresProxy": [
292
291
],
"disablePostgresProxy": [
292
291
],
"createPublicDomain": [
280,
279,
{
"domain": [
1,
@@ -9043,14 +9031,14 @@ export default {
}
],
"createEmailingDomain": [
282,
281,
{
"domain": [
1,
"String!"
],
"driver": [
283,
282,
"EmailingDomainDriver!"
]
}
@@ -9065,7 +9053,7 @@ export default {
}
],
"verifyEmailingDomain": [
282,
281,
{
"id": [
1,
@@ -9142,7 +9130,7 @@ export default {
}
],
"createDevelopmentApplication": [
268,
267,
{
"universalIdentifier": [
1,
@@ -9155,7 +9143,7 @@ export default {
}
],
"generateApplicationToken": [
270,
269,
{
"applicationId": [
3,
@@ -9164,7 +9152,7 @@ export default {
}
],
"syncApplication": [
269,
268,
{
"manifest": [
15,
@@ -9173,7 +9161,7 @@ export default {
}
],
"uploadApplicationFile": [
271,
270,
{
"file": [
372,
@@ -9207,7 +9195,7 @@ export default {
}
],
"renewApplicationToken": [
270,
269,
{
"applicationRefreshToken": [
1,
@@ -10757,12 +10745,12 @@ export default {
"settings": [
15
],
"objectMetadataId": [
3
],
"isLabelSyncedWithName": [
6
],
"objectMetadataId": [
3
],
"isRemoteCreation": [
6
],
@@ -10827,9 +10815,6 @@ export default {
"settings": [
15
],
"objectMetadataId": [
3
],
"isLabelSyncedWithName": [
6
],
@@ -11470,7 +11455,7 @@ export default {
}
],
"logicFunctionLogs": [
246,
296,
{
"input": [
490,
@@ -32,11 +32,11 @@ has_schema=$(PGPASSWORD=twenty psql -h localhost -U twenty -d default -tAc \
if [ "$has_schema" = "f" ]; then
echo "Database appears to be empty, running initial setup..."
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/database/scripts/setup-db.js
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/scripts/setup-db.js
fi
# Always run migrations (idempotent — skips already-applied ones)
yarn database:migrate:prod --force
yarn database:migrate:prod
yarn command:prod cache:flush
yarn command:prod upgrade
+6
View File
@@ -38,6 +38,12 @@ RUN npx nx run twenty-server:lingui:extract && \
RUN npx nx run twenty-server:build
# Bundle setup-db script into a standalone JS file so the final image
# doesn't need tsx or the TypeScript source tree at runtime.
RUN npx esbuild packages/twenty-server/scripts/setup-db.ts \
--bundle --platform=node --outfile=packages/twenty-server/dist/scripts/setup-db.js \
--external:typeorm --external:dotenv --external:pg
# Clean server build output (type declarations and compiled tests are not needed at runtime;
# source maps are kept because twenty-infra extracts them from the image for Sentry uploads)
RUN find /app/packages/twenty-server/dist -name '*.d.ts' -delete \
+2 -1
View File
@@ -13,7 +13,8 @@ setup_and_migrate_db() {
has_schema=$(psql -tAc "SELECT EXISTS (SELECT 1 FROM information_schema.schemata WHERE schema_name = 'core')" ${PG_DATABASE_URL})
if [ "$has_schema" = "f" ]; then
echo "Database appears to be empty, running migrations."
yarn database:init:prod
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/scripts/setup-db.js
yarn database:migrate:prod
fi
yarn command:prod cache:flush
+1 -1
View File
@@ -61,7 +61,7 @@ const jestConfig = {
extensionsToTreatAsEsm: ['.ts', '.tsx'],
coverageThreshold: {
global: {
statements: 48.4,
statements: 48.5,
lines: 47.0,
functions: 39.5,
},
Binary file not shown.

Before

Width:  |  Height:  |  Size: 91 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

File diff suppressed because one or more lines are too long
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tipe"
msgid "10,000 workflow node executions"
msgstr "10 000 werkvloeiknoopuitvoerings"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12u - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 werkvloeiknoopuitvoerings"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24u - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-sleutel is na knipbord gekopieer"
msgid "API key is required"
msgstr "API-sleutel word vereis"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API's"
msgid "APIs & Webhooks"
msgstr "API's & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Afkappingsteken en punt - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Omdat hierdie werkvloei nie 'n handmatige sneller gebruik nie, sal die v
msgid "Before"
msgstr "Voor"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Sluit banier"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Maak sypaneel toe"
@@ -3125,10 +3114,10 @@ msgstr "opdragkieslysitem"
msgid "Commands copied to clipboard"
msgstr "Opdragte na knipbord gekopieer"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Kommas en punt - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Inhoud"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Konteks"
@@ -3895,7 +3883,6 @@ msgstr "Besig om jou werksruimte te skep"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Geloofsbriewe"
@@ -4369,7 +4356,7 @@ msgstr "Deaktiveer Werksvloei"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Ontfoutingsinligting"
msgid "Decide which Sub-address fields you want to display"
msgstr "Besluit watter Subadresvelde jy wil vertoon"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Moenie kontakte van/na Gmail, Outlook e-posse skep nie"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Moenie e-posse vanaf team@ support@ noreply@... sinkroniseer nie"
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punte en komma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Wysig {objectLabelPlural}"
msgid "Edit Account"
msgstr "Wysig Rekening"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kon nie die ondernemingslisensie aktiveer nie. Gaan asseblief jou sleutel na of kontak ondersteuning."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Kon nie vaardigheid aktiveer nie"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Kon nie werke uitvee nie. Probeer asseblief later weer."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Kon nie vaardigheid verwyder nie"
@@ -6686,11 +6661,6 @@ msgstr "Veldnaam"
msgid "Field on destination"
msgstr "Veld op bestemming"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Lêers"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Versteek groep {groupValue}"
msgid "Hide hidden groups"
msgstr "Versteek versteekte groepe"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM-geloofsbriewe"
msgid "IAM credentials configured"
msgstr "IAM-geloofsbriewe gekonfigureer"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modelle vir hierdie verskaffer. Skakel om te aktiveer of te deaktiveer."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Maandag"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Meer"
@@ -9610,7 +9566,7 @@ msgstr "Nuwe rekord"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nuwe vaardigheid"
@@ -9751,11 +9707,6 @@ msgstr "Geen inhoud"
msgid "No calling code"
msgstr "Geen roepkode"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Geen toestemmings is ingestel vir individuele voorwerpe nie."
msgid "No record is required to trigger this workflow"
msgstr "Geen rekord is nodig om hierdie werkvloei te aktiveer nie"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Maak Outlook oop"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Maak sypaneel oop"
@@ -10688,8 +10632,6 @@ msgstr "Rangskik"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Ander"
@@ -11064,12 +11006,6 @@ msgstr ""
msgid "Pink"
msgstr "Pienk"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Rekordvlak"
msgid "Records"
msgstr "Rekords"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Stel terug"
msgid "Reset 2FA"
msgstr "Herstel 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Herstel na"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Herstel na Verstek"
@@ -12228,7 +12152,6 @@ msgstr "Russies"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Saterdag"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Soek 'n rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Soek 'n vaardigheid..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Vaardigheid"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Vaardigheid geaktiveer"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Vaardigheid verwyder"
@@ -13260,7 +13183,6 @@ msgstr "Vaardigheid nie gevind nie"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Vaardighede"
@@ -13406,10 +13328,10 @@ msgstr "Sorterings"
msgid "Source"
msgstr "Bron"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Spasies en komma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Som"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Sondag"
@@ -13864,24 +13785,43 @@ msgstr "Stelselverhoudings"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Stelselinstellings"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Stelselinstellings - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Stelselinstellings - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Stelselinstellings - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Stelselinstellings - Maandag"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Stelselinstellings - Saterdag"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Stelselinstellings - Sondag"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Ongepubliseer"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Ontsluit ondernemingsfunksies soos SSO, sekuriteit op ryvlak en ouditlogboeke."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Gebruik magtiging apps en blaaieruitbreidings soos 1Password, Authy, Mic
msgid "Use best models only"
msgstr "Gebruik slegs die beste modelle"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. نوع"
msgid "10,000 workflow node executions"
msgstr "١٠٬٠٠٠ تنفيذ لعقدة سير العمل"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12 ساعة - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "٢٠٬٠٠٠ تنفيذ لعقدة سير العمل"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration} مللي ثانية"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24 ساعة - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "تم نسخ مفتاح API إلى الحافظة"
msgid "API key is required"
msgstr "مفتاح واجهة برمجة التطبيقات مطلوب"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "واجهات برمجة التطبيقات"
msgid "APIs & Webhooks"
msgstr "واجهة برمجة التطبيقات والويب هوك"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "العلامة الاقتباس والنقطة - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "نظرًا لأن سير العمل هذا لا يستخدم مشغّل
msgid "Before"
msgstr "قبل"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "إغلاق اللافتة"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "إغلاق اللوحة الجانبية"
@@ -3125,10 +3114,10 @@ msgstr "عنصر قائمة الأوامر"
msgid "Commands copied to clipboard"
msgstr "تم نسخ الأوامر إلى الحافظة"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "الفواصل والنقطة - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "المحتوى"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "السياق"
@@ -3895,7 +3883,6 @@ msgstr "إنشاء مساحة العمل الخاصة بك"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "بيانات الاعتماد"
@@ -4369,7 +4356,7 @@ msgstr "إلغاء تنشيط سير العمل"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "معلومات التصحيح"
msgid "Decide which Sub-address fields you want to display"
msgstr "قرر أي حقول العناوين الفرعية تريد عرضها"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "لا تقم بإنشاء جهات الاتصال من/إلى Gmail، أ
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "لا تقم بمزامنة الرسائل الالكترونية من team@ أو support@ أو noreply@ . . ."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "النقاط والفاصلة - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "تحرير {objectLabelPlural}"
msgid "Edit Account"
msgstr "تحرير الحساب"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "فشل تفعيل ترخيص Enterprise. يُرجى التحقق من المفتاح أو التواصل مع الدعم."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "فشل في تنشيط المهارة"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "فشل حذف الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "فشل في حذف المهارة"
@@ -6686,11 +6661,6 @@ msgstr "اسم الحقل"
msgid "Field on destination"
msgstr "حقل في الوجهة"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "ملفات"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "إخفاء المجموعة {groupValue}"
msgid "Hide hidden groups"
msgstr "إخفاء المجموعات المخفية"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "بيانات اعتماد IAM"
msgid "IAM credentials configured"
msgstr "تم تكوين بيانات اعتماد IAM"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "النماذج لهذا المزود. بدّل للتفعيل أو ال
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "الإثنين"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "المزيد"
@@ -9610,7 +9566,7 @@ msgstr "سجل جديد"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "مهارة جديدة"
@@ -9751,11 +9707,6 @@ msgstr "لا يوجد متن"
msgid "No calling code"
msgstr "بدون رمز الاتصال"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "لم يتم تعيين أي أذونات للعناصر الفردية."
msgid "No record is required to trigger this workflow"
msgstr "لا يتطلب سجل لتفعيل سير العمل هذا"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "فتح Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "فتح اللوحة الجانبية"
@@ -10688,8 +10632,6 @@ msgstr "تنظيم"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "أخرى"
@@ -11064,12 +11006,6 @@ msgstr "الرسم البياني الدائري"
msgid "Pink"
msgstr "وردي"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "مستوى السجل"
msgid "Records"
msgstr "السجلات"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "إعادة تعيين"
msgid "Reset 2FA"
msgstr "إعادة تعيين المصادقة الثنائية"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "\\\\"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "إعادة التعيين إلى الافتراضي"
@@ -12228,7 +12152,6 @@ msgstr "الروسية"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "السبت"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "ابحث عن دور..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "ابحث عن مهارة..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "مهارة"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "تم تنشيط المهارة"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "تم حذف المهارة"
@@ -13260,7 +13183,6 @@ msgstr "لم يتم العثور على المهارة"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "المهارات"
@@ -13406,10 +13328,10 @@ msgstr "معايير الترتيب"
msgid "Source"
msgstr "المصدر"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "المسافات والفاصلة - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "المجموع"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "الأحد"
@@ -13864,24 +13785,43 @@ msgstr "علاقات النظام"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "إعدادات النظام"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "إعدادات النظام - <b>{systemDateFormatLabel}</b>"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "إعدادات النظام - <b>{systemNumberFormatLabel}</b>"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "إعدادات النظام - <b>{systemTimeFormatLabel}</b>"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "إعدادات النظام - <b>الإثنين</b>"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "إعدادات النظام - <b>السبت</b>"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "إعدادات النظام - <b>الأحد</b>"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "غير مدرج"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "فعّل ميزات Enterprise مثل SSO وأمن على مستوى الصف وسجلات التدقيق."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "استخدم تطبيقات المصادقة وملحقات المتصف
msgid "Use best models only"
msgstr "استخدام أفضل النماذج فقط"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tipus"
msgid "10,000 workflow node executions"
msgstr "10.000 execucions de nodes de flux de treball"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 execucions de nodes de flux de treball"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "La clau API s'ha copiat al porta-retalls"
msgid "API key is required"
msgstr "La clau de l'API és necessària"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API i Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apòstrof i punt - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Com que aquest flux de treball no utilitza un activador manual, el formu
msgid "Before"
msgstr "Abans"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Tanca el bàner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Tanca el panell lateral"
@@ -3125,10 +3114,10 @@ msgstr "element del menú de comandaments"
msgid "Commands copied to clipboard"
msgstr "Ordres copiades al porta-retalls"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Comes i punt - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Contingut"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3895,7 +3883,6 @@ msgstr "Creant el teu espai de treball"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credencials"
@@ -4369,7 +4356,7 @@ msgstr "Desactiva el Flux de treball"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Informació de depuració"
msgid "Decide which Sub-address fields you want to display"
msgstr "Decideix quins camps de Sub-adreça vols mostrar"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "No creïs contactes des/de Gmail, correus de Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "No sincronitzis correus de team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punts i coma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Edita el compte"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "No s'ha pogut activar la llicència Enterprise. Comproveu la vostra clau o contacteu amb el suport."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "No s'ha pogut activar l'habilitat"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Error al suprimir feines. Torneu-ho a provar més tard."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "No s'ha pogut suprimir l'habilitat"
@@ -6686,11 +6661,6 @@ msgstr "Nom del camp"
msgid "Field on destination"
msgstr "Camp a la destinació"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Arxius"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Amaga el grup {groupValue}"
msgid "Hide hidden groups"
msgstr "Amaga grups ocults"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Credencials d'IAM"
msgid "IAM credentials configured"
msgstr "Credencials d'IAM configurades"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Models per a aquest proveïdor. Commuta per activar o desactivar."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Dilluns"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Més"
@@ -9610,7 +9566,7 @@ msgstr "Nou registre"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nova habilitat"
@@ -9751,11 +9707,6 @@ msgstr "Sense cos"
msgid "No calling code"
msgstr "Sense prefix de trucada"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "No s'han establert permisos per a objectes individuals."
msgid "No record is required to trigger this workflow"
msgstr "No es requereix cap registre per activar aquest flux de treball"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Obrir en Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Obre el panell lateral"
@@ -10688,8 +10632,6 @@ msgstr "Organitza"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Altres"
@@ -11064,12 +11006,6 @@ msgstr "Gràfic circular"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Nivell de registre"
msgid "Records"
msgstr "Registres"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Restableix"
msgid "Reset 2FA"
msgstr "Reinicia 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Reinicia a"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Restableix a predeterminat"
@@ -12228,7 +12152,6 @@ msgstr "Rus"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Dissabte"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Cerca un rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Cerca una habilitat..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Habilitat"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Habilitat activada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Habilitat suprimida"
@@ -13260,7 +13183,6 @@ msgstr "Habilitat no trobada"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Habilitats"
@@ -13406,10 +13328,10 @@ msgstr "Criteris d'ordenació"
msgid "Source"
msgstr "Font"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Espais i coma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Suma"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Diumenge"
@@ -13864,24 +13785,43 @@ msgstr "Relacions del sistema"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Configuració del sistema"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Configuració del sistema - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Configuració del Sistema - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Configuració del Sistema - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Configuració del sistema - Dilluns"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Configuració del sistema - Dissabte"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Configuració del sistema - Diumenge"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "No Llistat"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Desbloquegeu funcionalitats Enterprise com SSO, la seguretat a nivell de fila i els registres d'auditoria."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Utilitza aplicacions d'autenticació i extensions de navegador com 1Pass
msgid "Use best models only"
msgstr "Utilitzar només els millors models"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Typ"
msgid "10,000 workflow node executions"
msgstr "10 000 spuštění uzlu pracovního postupu"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 spuštění uzlu pracovního postupu"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Klíč API zkopírován do schránky"
msgid "API key is required"
msgstr "Klíč API je vyžadován"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrof a tečka - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Protože tento pracovní postup není spouštěn ručně, formulář se
msgid "Before"
msgstr "Před"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Zavřít banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Zavřít postranní panel"
@@ -3125,10 +3114,10 @@ msgstr "položka menu příkazů"
msgid "Commands copied to clipboard"
msgstr "Příkazy zkopírovány do schránky"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Čárky a tečka - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Obsah"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontext"
@@ -3895,7 +3883,6 @@ msgstr "Vytváření vašeho pracovního prostoru"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Přihlašovací údaje"
@@ -4369,7 +4356,7 @@ msgstr "Deaktivovat Workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Ladicí informace"
msgid "Decide which Sub-address fields you want to display"
msgstr "Rozhodněte se, která pole podadresy chcete zobrazit"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Nevytvářejte kontakty z/na Gmail, Outlook e-maily"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Nesynchronizovat e-maily od team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Tečky a čárky - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Upravit {objectLabelPlural}"
msgid "Edit Account"
msgstr "Upravit účet"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Aktivace licence Enterprise se nezdařila. Zkontrolujte svůj klíč nebo kontaktujte podporu."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Nepodařilo se aktivovat dovednost"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Nelze smazat úlohy. Prosím, zkuste to znovu později."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Nepodařilo se smazat dovednost"
@@ -6686,11 +6661,6 @@ msgstr "Název pole"
msgid "Field on destination"
msgstr "Pole v cíli"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Soubory"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Skrýt skupinu {groupValue}"
msgid "Hide hidden groups"
msgstr "Skrýt skryté skupiny"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Přihlašovací údaje IAM"
msgid "IAM credentials configured"
msgstr "Přihlašovací údaje IAM jsou nakonfigurovány"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modely tohoto poskytovatele. Pomocí přepínače je povolte nebo zakaž
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Pondělí"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Více"
@@ -9610,7 +9566,7 @@ msgstr "Nový záznam"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nová dovednost"
@@ -9751,11 +9707,6 @@ msgstr "Žádné tělo"
msgid "No calling code"
msgstr "Bez předvolby"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Žádná oprávnění nebyla nastavena pro jednotlivé objekty."
msgid "No record is required to trigger this workflow"
msgstr "K aktivaci tohoto pracovního postupu není vyžadován žádný záznam"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Otevřít Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Otevřít postranní panel"
@@ -10688,8 +10632,6 @@ msgstr "Uspořádat"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Ostatní"
@@ -11064,12 +11006,6 @@ msgstr "Koláčový graf"
msgid "Pink"
msgstr "Růžová"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Na úrovni záznamu"
msgid "Records"
msgstr "Záznamy"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Obnovit"
msgid "Reset 2FA"
msgstr "Obnovit 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Obnovit na"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Obnovit na výchozí"
@@ -12228,7 +12152,6 @@ msgstr "Ruština"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Sobota"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Vyhledat roli..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Vyhledat dovednost..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Dovednost"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Dovednost aktivována"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Dovednost smazána"
@@ -13260,7 +13183,6 @@ msgstr "Dovednost nebyla nalezena"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Dovednosti"
@@ -13406,10 +13328,10 @@ msgstr "Řazení"
msgid "Source"
msgstr "Zdroj"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Mezery a čárka - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Součet"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Neděle"
@@ -13864,24 +13785,43 @@ msgstr "Systémové vztahy"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Systémová nastavení"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Systémová nastavení - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Systémová nastavení - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Systémová nastavení - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Systémová nastavení - Pondělí"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Systémová nastavení - Sobota"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Systémová nastavení - Neděle"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Neveřejné"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Odemkněte funkce Enterprise, jako je SSO, zabezpečení na úrovni řádků a záznamy auditu."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Používejte autentizační aplikace a rozšíření prohlížeče jako
msgid "Use best models only"
msgstr "Používat pouze nejlepší modely"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Skriv"
msgid "10,000 workflow node executions"
msgstr "10.000 workflow node eksekveringer"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12 timer - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 workflow node eksekveringer"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24 timer - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-nøgle kopieret til udklipsholder"
msgid "API key is required"
msgstr "API-nøglen er påkrævet"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API'er"
msgid "APIs & Webhooks"
msgstr "API'er & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Anførselstegn og punktum - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Da dette workflow ikke bruger en manuel udløser, åbnes formularen ikke
msgid "Before"
msgstr "Før"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Luk banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Luk sidepanelet"
@@ -3125,10 +3114,10 @@ msgstr "kommando-menu menupunkt"
msgid "Commands copied to clipboard"
msgstr "Kommandoer kopieret til udklipsholder"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Kommaer og punktum - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Indhold"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontekst"
@@ -3895,7 +3883,6 @@ msgstr "Opretter dit arbejdsområde"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Legitimationsoplysninger"
@@ -4369,7 +4356,7 @@ msgstr "Deaktiver Workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Fejlsøgningsinfo"
msgid "Decide which Sub-address fields you want to display"
msgstr "Vælg hvilke underadressefelter du vil vise"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Opret ikke kontakter fra/til Gmail-, Outlook-emails"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Synkroniser ikke emails fra team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punktummer og komma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Rediger {objectLabelPlural}"
msgid "Edit Account"
msgstr "Rediger konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kunne ikke aktivere Enterprise-licensen. Kontrollér din nøgle, eller kontakt support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Kunne ikke aktivere færdighed"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Kunne ikke slette jobs. Prøv venligst igen senere."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Kunne ikke slette færdighed"
@@ -6686,11 +6661,6 @@ msgstr "Feltnavn"
msgid "Field on destination"
msgstr "Felt på destination"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Filer"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Skjul gruppe {groupValue}"
msgid "Hide hidden groups"
msgstr "Skjul skjulte grupper"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM-legitimationsoplysninger"
msgid "IAM credentials configured"
msgstr "IAM-legitimationsoplysningerne er konfigureret"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modeller fra denne udbyder. Skift for at aktivere eller deaktivere."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Mandag"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mere"
@@ -9610,7 +9566,7 @@ msgstr "Ny post"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Ny færdighed"
@@ -9751,11 +9707,6 @@ msgstr "Ingen body"
msgid "No calling code"
msgstr "Uden landekode"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Der er ikke angivet tilladelser for individuelle objekter."
msgid "No record is required to trigger this workflow"
msgstr "Ingen post kræves for at aktivere denne workflow"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Åbn Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Åbn sidepanelet"
@@ -10688,8 +10632,6 @@ msgstr "Organiser"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Andet"
@@ -11064,12 +11006,6 @@ msgstr "Cirkeldiagram"
msgid "Pink"
msgstr "Pink"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Postniveau"
msgid "Records"
msgstr "Protokoller"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Nulstil"
msgid "Reset 2FA"
msgstr "Nulstil 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Nulstil til"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Nulstil til standard"
@@ -12228,7 +12152,6 @@ msgstr "Russisk"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Lørdag"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Søg en rolle..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Søg efter en færdighed..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Færdighed"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Færdighed aktiveret"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Færdighed slettet"
@@ -13260,7 +13183,6 @@ msgstr "Færdighed ikke fundet"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Færdigheder"
@@ -13406,10 +13328,10 @@ msgstr "Sorteringer"
msgid "Source"
msgstr "Kilde"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Mellemrum og komma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Sum"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Søndag"
@@ -13864,24 +13785,43 @@ msgstr "Systemrelationer"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Systemindstillinger"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Systemindstillinger - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Systemindstillinger - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Systemindstillinger - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Systemindstillinger - Mandag"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Systemindstillinger - Lørdag"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Systemindstillinger - Søndag"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14934,13 +14874,6 @@ msgstr "Ikke opført"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Lås op for Enterprise-funktioner som SSO, sikkerhed på rækkeniveau og revisionslogge."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15210,11 +15143,6 @@ msgstr "Brug autentifikationsapps og browserudvidelser som 1Password, Authy, Mic
msgid "Use best models only"
msgstr "Brug kun de bedste modeller"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Typ"
msgid "10,000 workflow node executions"
msgstr "10.000 Workflow-Knotenausführungen"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 Workflow-Knotenausführungen"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-Schlüssel in die Zwischenablage kopiert"
msgid "API key is required"
msgstr "API-Schlüssel ist erforderlich"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "Schnittstellen"
msgid "APIs & Webhooks"
msgstr "APIs & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostroph und Punkt - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Da dieser Workflow keinen manuellen Auslöser verwendet, wird das Formul
msgid "Before"
msgstr "Vor"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Banner schließen"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Seitenpanel schließen"
@@ -3125,10 +3114,10 @@ msgstr "Befehlsmenü-Eintrag"
msgid "Commands copied to clipboard"
msgstr "Befehle in die Zwischenablage kopiert"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Kommas und Punkt - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Inhalt"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontext"
@@ -3895,7 +3883,6 @@ msgstr "Erstellen Ihres Arbeitsbereichs"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Anmeldedaten"
@@ -4369,7 +4356,7 @@ msgstr "Workflow deaktivieren"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Debug-Informationen"
msgid "Decide which Sub-address fields you want to display"
msgstr "Entscheiden Sie, welche Unteradressfelder Sie anzeigen möchten"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Keine Kontakte aus/von Gmail, Outlook E-Mails erstellen"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Keine E-Mails von team@ support@ noreply@... synchronisieren"
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punkte und Komma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Bearbeiten {objectLabelPlural}"
msgid "Edit Account"
msgstr "Konto bearbeiten"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Enterprise-Lizenz konnte nicht aktiviert werden. Bitte überprüfen Sie Ihren Schlüssel oder wenden Sie sich an den Support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Skill konnte nicht aktiviert werden"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Aufgaben konnten nicht gelöscht werden. Bitte versuchen Sie es später noch einmal."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Skill konnte nicht gelöscht werden"
@@ -6686,11 +6661,6 @@ msgstr "Feldname"
msgid "Field on destination"
msgstr "Feld am Ziel"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Dateien"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Gruppe {groupValue} ausblenden"
msgid "Hide hidden groups"
msgstr "Verborgene Gruppen ausblenden"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM-Anmeldedaten"
msgid "IAM credentials configured"
msgstr "IAM-Anmeldedaten konfiguriert"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modelle für diesen Anbieter. Umschalten, um zu aktivieren oder zu deakt
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Montag"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mehr"
@@ -9610,7 +9566,7 @@ msgstr "Neuer Datensatz"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Neuer Skill"
@@ -9751,11 +9707,6 @@ msgstr "Kein Body"
msgid "No calling code"
msgstr "Ohne Ländervorwahl"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Es wurden keine Berechtigungen für einzelne Objekte festgelegt."
msgid "No record is required to trigger this workflow"
msgstr "Kein Datensatz ist erforderlich, um diesen Arbeitsablauf zu starten"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Outlook öffnen"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Seitenpanel öffnen"
@@ -10688,8 +10632,6 @@ msgstr "Organisieren"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Andere"
@@ -11064,12 +11006,6 @@ msgstr "Tortendiagramm"
msgid "Pink"
msgstr "Pink"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Datensatzebene"
msgid "Records"
msgstr "Datensätze"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Zurücksetzen"
msgid "Reset 2FA"
msgstr "2FA zurücksetzen"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Zurücksetzen auf"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Auf Standard zurücksetzen"
@@ -12228,7 +12152,6 @@ msgstr "Russisch"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Samstag"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Nach einer Rolle suchen..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Nach einem Skill suchen..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Skill"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Skill aktiviert"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Skill gelöscht"
@@ -13260,7 +13183,6 @@ msgstr "Skill nicht gefunden"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Skills"
@@ -13406,10 +13328,10 @@ msgstr "Sortierungen"
msgid "Source"
msgstr "Quelle"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Leerzeichen und Komma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Summe"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Sonntag"
@@ -13864,24 +13785,43 @@ msgstr "Systembeziehungen"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Systemeinstellungen"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Systemeinstellungen - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Systemeinstellungen - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Systemeinstellungen - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Systemeinstellungen - Montag"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Systemeinstellungen - Samstag"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Systemeinstellungen - Sonntag"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Nicht gelistet"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Schalten Sie Enterprise-Funktionen wie SSO, zeilenbasierte Sicherheit und Audit-Logs frei."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Verwenden Sie Authenticator-Apps und Browser-Erweiterungen wie 1Password
msgid "Use best models only"
msgstr "Nur die besten Modelle verwenden"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Τύπος"
msgid "10,000 workflow node executions"
msgstr "10.000 εκτελέσεις κόμβου ροής εργασιών"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12ω - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 εκτελέσεις κόμβου ροής εργασιών"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24ω - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Το κλειδί API αντιγράφηκε στο πρόχειρο"
msgid "API key is required"
msgstr "Απαιτείται κλειδί API"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "«Απόστροφος και τελεία - {apostropheAndDotExample}»"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Επειδή αυτή η ροή εργασίας δεν χρησιμοπ
msgid "Before"
msgstr "Πριν"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Κλείσιμο banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Κλείσιμο πλευρικού πάνελ"
@@ -3125,10 +3114,10 @@ msgstr "στοιχείο μενού εντολών"
msgid "Commands copied to clipboard"
msgstr "Οι εντολές αντιγράφηκαν στο πρόχειρο"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Κόμματα και τελεία - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Περιεχόμενο"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Περιβάλλον"
@@ -3895,7 +3883,6 @@ msgstr "Δημιουργία του χώρου εργασίας σας"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Διαπιστευτήρια"
@@ -4369,7 +4356,7 @@ msgstr "Απενεργοποίηση Workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Πληροφορίες αποσφαλμάτωσης"
msgid "Decide which Sub-address fields you want to display"
msgstr "Αποφασίστε ποια πεδία Υπο-διευθύνσεων θέλετε να εμφανίζονται"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Μην δημιουργείτε επαφές από/προς Gmail, Outl
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Μην συγχρονίζετε emails από το team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Τελείες και κόμμα - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Επεξεργασία {objectLabelPlural}"
msgid "Edit Account"
msgstr "Επεξεργασία Λογαριασμού"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Αποτυχία ενεργοποίησης της άδειας Enterprise. Ελέγξτε το κλειδί σας ή επικοινωνήστε με την υποστήριξη."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Αποτυχία ενεργοποίησης δεξιότητας"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Αποτυχία διαγραφής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Αποτυχία διαγραφής δεξιότητας"
@@ -6686,11 +6661,6 @@ msgstr "Όνομα Πεδίου"
msgid "Field on destination"
msgstr "Πεδίο στον προορισμό"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Αρχεία"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Απόκρυψη ομάδας {groupValue}"
msgid "Hide hidden groups"
msgstr "Απόκρυψη κρυφών ομάδων"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Διαπιστευτήρια IAM"
msgid "IAM credentials configured"
msgstr "Τα διαπιστευτήρια IAM έχουν ρυθμιστεί"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Μοντέλα για αυτόν τον πάροχο. Ενεργοποι
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Δευτέρα"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Περισσότερα"
@@ -9610,7 +9566,7 @@ msgstr "Νέα εγγραφή"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Νέα δεξιότητα"
@@ -9751,11 +9707,6 @@ msgstr "Χωρίς σώμα"
msgid "No calling code"
msgstr "Χωρίς κωδικό κλήσης"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Δεν έχουν οριστεί δικαιώματα για μεμον
msgid "No record is required to trigger this workflow"
msgstr "Δεν απαιτείται καμία εγγραφή για να ενεργοποιήσετε αυτήν τη ροή εργασιών"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Άνοιγμα με Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Άνοιγμα πλευρικού πάνελ"
@@ -10688,8 +10632,6 @@ msgstr "Οργάνωση"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Άλλο"
@@ -11064,12 +11006,6 @@ msgstr "Διάγραμμα πίτας"
msgid "Pink"
msgstr "Ροζ"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Επίπεδο εγγραφής"
msgid "Records"
msgstr "Εγγραφές"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Επαναφορά"
msgid "Reset 2FA"
msgstr "Επαναφορά 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Επαναφορά σε"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Επαναφορά στις Προεπιλογές"
@@ -12228,7 +12152,6 @@ msgstr "Ρωσικά"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Σάββατο"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Αναζήτηση ρόλου..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Αναζήτηση δεξιότητας..."
@@ -13240,12 +13163,12 @@ msgid "Skill"
msgstr "Δεξιότητα"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Η δεξιότητα ενεργοποιήθηκε"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Η δεξιότητα διαγράφηκε"
@@ -13262,7 +13185,6 @@ msgstr "Δεν βρέθηκε δεξιότητα"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Δεξιότητες"
@@ -13408,10 +13330,10 @@ msgstr "Ταξινομήσεις"
msgid "Source"
msgstr "Πηγή"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Κενά και κόμμα - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13717,7 +13639,6 @@ msgstr "Σύνολο"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Κυριακή"
@@ -13866,24 +13787,43 @@ msgstr "Σχέσεις Συστήματος"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Ρυθμίσεις Συστήματος"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Ρυθμίσεις συστήματος - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Ρυθμίσεις Συστήματος - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Ρυθμίσεις Συστήματος - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Ρυθμίσεις συστήματος - Δευτέρα"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Ρυθμίσεις συστήματος - Σάββατο"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Ρυθμίσεις συστήματος - Κυριακή"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14936,13 +14876,6 @@ msgstr "Μη καταχωρισμένο"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Ξεκλειδώστε δυνατότητες Enterprise όπως SSO, ασφάλεια σε επίπεδο γραμμής και αρχεία ελέγχου."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15212,11 +15145,6 @@ msgstr "Χρησιμοποιήστε εφαρμογές ταυτοποίησης
msgid "Use best models only"
msgstr "Χρήση μόνο των καλύτερων μοντέλων"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -501,10 +501,10 @@ msgstr "1. Type"
msgid "10,000 workflow node executions"
msgstr "10,000 workflow node executions"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr "12h"
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -537,10 +537,10 @@ msgstr "20,000 workflow node executions"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr "24h"
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1746,11 +1746,6 @@ msgstr "API Key copied to clipboard"
msgid "API key is required"
msgstr "API key is required"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr "API key name cannot be empty"
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1816,10 +1811,10 @@ msgstr "APIs"
msgid "APIs & Webhooks"
msgstr "APIs & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr "Apostrophe and dot"
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrophe and dot - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2367,11 +2362,6 @@ msgstr "Because this workflow is not using a manual trigger, the form will not o
msgid "Before"
msgstr "Before"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr "Best"
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3023,7 +3013,6 @@ msgstr "Close banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Close side panel"
@@ -3120,10 +3109,10 @@ msgstr "command menu item"
msgid "Commands copied to clipboard"
msgstr "Commands copied to clipboard"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr "Commas and dot"
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Commas and dot - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3398,7 +3387,6 @@ msgstr "Content"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3890,7 +3878,6 @@ msgstr "Creating your workspace"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credentials"
@@ -4364,7 +4351,7 @@ msgstr "Deactivate Workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4382,11 +4369,6 @@ msgstr "Debug Info"
msgid "Decide which Sub-address fields you want to display"
msgstr "Decide which Sub-address fields you want to display"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr "default"
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4955,10 +4937,10 @@ msgstr "Don't create contacts from/to Gmail, Outlook emails"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Don't sync emails from team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr "Dots and comma"
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Dots and comma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5178,13 +5160,6 @@ msgstr "Edit {objectLabelPlural}"
msgid "Edit Account"
msgstr "Edit Account"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr "Edit actions"
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6386,7 +6361,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Failed to activate enterprise license. Please check your key or contact support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Failed to activate skill"
@@ -6411,7 +6386,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Failed to delete jobs. Please try again later."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Failed to delete skill"
@@ -6681,11 +6656,6 @@ msgstr "Field Name"
msgid "Field on destination"
msgstr "Field on destination"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr "field permission"
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6789,6 +6759,9 @@ msgid "Files"
msgstr "Files"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7410,11 +7383,6 @@ msgstr "Hide group {groupValue}"
msgid "Hide hidden groups"
msgstr "Hide hidden groups"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr "Hide label"
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7523,16 +7491,6 @@ msgstr "IAM credentials"
msgid "IAM credentials configured"
msgstr "IAM credentials configured"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr "IAM role"
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr "IAM role (instance profile)"
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9171,7 +9129,6 @@ msgstr "Models for this provider. Toggle to enable or disable."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Monday"
@@ -9222,7 +9179,6 @@ msgstr "months"
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "More"
@@ -9605,7 +9561,7 @@ msgstr "New record"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "New Skill"
@@ -9746,11 +9702,6 @@ msgstr "No body"
msgid "No calling code"
msgstr "No calling code"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr "No chat"
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10049,12 +10000,6 @@ msgstr "No permissions have been set for individual objects."
msgid "No record is required to trigger this workflow"
msgstr "No record is required to trigger this workflow"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr "No record selected"
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10585,7 +10530,6 @@ msgstr "Open Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Open side panel"
@@ -10683,8 +10627,6 @@ msgstr "Organize"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Other"
@@ -11059,12 +11001,6 @@ msgstr "Pie Chart"
msgid "Pink"
msgstr "Pink"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr "Pinned"
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11611,12 +11547,6 @@ msgstr "Record-level"
msgid "Records"
msgstr "Records"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr "Records selected"
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11909,11 +11839,6 @@ msgstr "Reset"
msgid "Reset 2FA"
msgstr "Reset 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr "Reset label to default"
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11921,7 +11846,6 @@ msgstr "Reset to"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Reset to default"
@@ -12223,7 +12147,6 @@ msgstr "Russian"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Saturday"
@@ -12349,7 +12272,7 @@ msgid "Search a role..."
msgstr "Search a role..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Search a skill..."
@@ -13233,12 +13156,12 @@ msgid "Skill"
msgstr "Skill"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Skill activated"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Skill deleted"
@@ -13255,7 +13178,6 @@ msgstr "Skill not found"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Skills"
@@ -13401,10 +13323,10 @@ msgstr "Sorts"
msgid "Source"
msgstr "Source"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr "Spaces and comma"
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Spaces and comma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13710,7 +13632,6 @@ msgstr "Sum"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Sunday"
@@ -13859,24 +13780,43 @@ msgstr "System relations"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "System settings"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "System settings - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "System Settings - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "System Settings - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "System settings - Monday"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "System settings - Saturday"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "System settings - Sunday"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14929,13 +14869,6 @@ msgstr "Unlisted"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Unlock enterprise features like SSO, row-level security, and audit logs."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr "Unnamed API Key"
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15205,11 +15138,6 @@ msgstr "Use authenticator apps and browser extensions like 1Password, Authy, Mic
msgid "Use best models only"
msgstr "Use best models only"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr "Use filter to see existing tools or create your own"
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
msgid "10,000 workflow node executions"
msgstr "10.000 ejecuciones de nodos de workflow"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 ejecuciones de nodos de workflow"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Clave API copiada al portapapeles"
msgid "API key is required"
msgstr "La clave de API es obligatoria"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API y Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apóstrofe y punto - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Dado que este flujo de trabajo no utiliza un desencadenador manual, el f
msgid "Before"
msgstr "Antes"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Cerrar banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Cerrar panel lateral"
@@ -3125,10 +3114,10 @@ msgstr "elemento del menú de comandos"
msgid "Commands copied to clipboard"
msgstr "Comandos copiados al portapapeles"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Comas y punto - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Contenido"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexto"
@@ -3895,7 +3883,6 @@ msgstr "Creando tu espacio de trabajo"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenciales"
@@ -4369,7 +4356,7 @@ msgstr "Desactivar workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Información de depuración"
msgid "Decide which Sub-address fields you want to display"
msgstr "Decide qué campos de subdirección deseas mostrar"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "No crear contactos de/a correos de Gmail, Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "No sincronizar correos de team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Puntos y coma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editar Cuenta"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "No se pudo activar la licencia Enterprise. Comprueba tu clave o ponte en contacto con soporte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "No se pudo activar la habilidad"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Error al eliminar trabajos. Por favor, inténtelo de nuevo más tarde."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "No se pudo eliminar la habilidad"
@@ -6686,11 +6661,6 @@ msgstr "Nombre del campo"
msgid "Field on destination"
msgstr "Campo en destino"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Archivos"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Ocultar grupo {groupValue}"
msgid "Hide hidden groups"
msgstr "Ocultar grupos ocultos"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Credenciales de IAM"
msgid "IAM credentials configured"
msgstr "Credenciales de IAM configuradas"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modelos para este proveedor. Usa el interruptor para habilitarlos o desh
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Lunes"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Más"
@@ -9610,7 +9566,7 @@ msgstr "Nuevo registro"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nueva habilidad"
@@ -9751,11 +9707,6 @@ msgstr "Sin cuerpo"
msgid "No calling code"
msgstr "Sin código de llamada"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "No se han establecido permisos para objetos individuales."
msgid "No record is required to trigger this workflow"
msgstr "No se requiere ningún registro para activar este flujo de trabajo"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Abrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Abrir panel lateral"
@@ -10688,8 +10632,6 @@ msgstr "Organizar"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Otros"
@@ -11064,12 +11006,6 @@ msgstr "Gráfico de pastel"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Nivel de registro"
msgid "Records"
msgstr "Registros"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Restablecer"
msgid "Reset 2FA"
msgstr "Restablecer 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Restablecer a"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Restablecer a predeterminado"
@@ -12228,7 +12152,6 @@ msgstr "Ruso"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Sábado"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Buscar un rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Buscar una habilidad..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Habilidad"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Habilidad activada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Habilidad eliminada"
@@ -13260,7 +13183,6 @@ msgstr "No se encontró la habilidad"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Habilidades"
@@ -13406,10 +13328,10 @@ msgstr "Criterios de ordenación"
msgid "Source"
msgstr "Fuente"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Espacios y coma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Suma"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Domingo"
@@ -13864,24 +13785,43 @@ msgstr "Relaciones del sistema"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Configuración del sistema"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Configuración del sistema - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Configuración del sistema - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Configuración del sistema - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Configuración del sistema - Lunes"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Configuración del sistema - Sábado"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Configuración del sistema - Domingo"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14934,13 +14874,6 @@ msgstr "No listadas"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Desbloquea funciones Enterprise como SSO, seguridad a nivel de fila y registros de auditoría."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15210,11 +15143,6 @@ msgstr "Usa aplicaciones de autenticación y extensiones de navegador como 1Pass
msgid "Use best models only"
msgstr "Usar solo los mejores modelos"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Kirjoita"
msgid "10,000 workflow node executions"
msgstr "10 000 työnkulun solmun suoritusta"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 työnkulun solmun suoritusta"
msgid "200 OK - {duration}ms"
msgstr "200 OK {duration} ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-avain kopioitu leikepöydälle"
msgid "API key is required"
msgstr "API-avain vaaditaan"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "Rajapinnat"
msgid "APIs & Webhooks"
msgstr "API:t & Webhookit"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrofi ja piste - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Koska tämä työnkulku ei käytä manuaalista käynnistystä, lomake ei
msgid "Before"
msgstr "Ennen"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Sulje banneri"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Sulje sivupaneeli"
@@ -3125,10 +3114,10 @@ msgstr "komentovalikon valikkokohta"
msgid "Commands copied to clipboard"
msgstr "Komennot kopioitu leikepöydälle"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Pilkkuja ja piste - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Sisältö"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Yhteys"
@@ -3895,7 +3883,6 @@ msgstr "Luodaan työtilasi"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Tunnistetiedot"
@@ -4369,7 +4356,7 @@ msgstr "Poista työnkulku käytöstä"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Vianetsintätiedot"
msgid "Decide which Sub-address fields you want to display"
msgstr "Päätä, mitkä alikentät haluat näyttää"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Älä luo yhteystietoja Gmailista tai Outlook-sähköposteista"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Älä synkronoi sähköposteja osoitteista team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Pisteitä ja pilkku - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Muokkaa {objectLabelPlural}"
msgid "Edit Account"
msgstr "Muokkaa tiliä"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Enterprise-lisenssin aktivointi epäonnistui. Tarkista avaimesi tai ota yhteyttä tukeen."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Taidon aktivointi epäonnistui"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Epäonnistui töiden poistamisessa. Yritä myöhemmin uudelleen."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Taidon poistaminen epäonnistui"
@@ -6686,11 +6661,6 @@ msgstr "Kentän nimi"
msgid "Field on destination"
msgstr "Kenttä kohteessa"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Tiedostot"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Piilota ryhmä {groupValue}"
msgid "Hide hidden groups"
msgstr "Piilota piilotetut ryhmät"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM-tunnistetiedot"
msgid "IAM credentials configured"
msgstr "IAM-tunnistetiedot määritetty"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Tämän tarjoajan mallit. Ota käyttöön tai poista käytöstä kytkime
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Maanantai"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Lisää"
@@ -9610,7 +9566,7 @@ msgstr "Uusi tietue"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Uusi taito"
@@ -9751,11 +9707,6 @@ msgstr "Ei viestirunkoa"
msgid "No calling code"
msgstr "Ei suuntanumeroa"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Yksittäisille kohteille ei ole asetettu käyttöoikeuksia."
msgid "No record is required to trigger this workflow"
msgstr "Ei tietuetta tarvita tämän työnkulun käynnistämiseen"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Avaa Outlookissa"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Avaa sivupaneeli"
@@ -10688,8 +10632,6 @@ msgstr ""
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Muu"
@@ -11064,12 +11006,6 @@ msgstr "Ympyräkaavio"
msgid "Pink"
msgstr "Vaaleanpunainen"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Tietuetaso"
msgid "Records"
msgstr "Tietueet"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Nollaa"
msgid "Reset 2FA"
msgstr "Nollaa 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Palauta"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Palauta oletukseksi"
@@ -12228,7 +12152,6 @@ msgstr "Venäjä"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Lauantai"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Etsi roolia..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Etsi taitoa..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Taito"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Taito aktivoitu"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Taito poistettu"
@@ -13260,7 +13183,6 @@ msgstr "Taitoa ei löytynyt"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Taidot"
@@ -13406,10 +13328,10 @@ msgstr "Lajittelut"
msgid "Source"
msgstr "Lähde"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Välilyöntejä ja pilkku - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Summa"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Sunnuntai"
@@ -13864,24 +13785,43 @@ msgstr "Järjestelmän suhteet"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Järjestelmäasetukset"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Järjestelmän asetukset - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Järjestelmän asetukset - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Järjestelmän asetukset - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Järjestelmän asetukset - Maanantai"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Järjestelmän asetukset - Lauantai"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Järjestelmän asetukset - Sunnuntai"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Listaamattomat"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Avaa Enterprise-ominaisuudet, kuten SSO, rivitason suojaus ja tarkastuslokit."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Käytä todennussovelluksia ja selainlaajennuksia, kuten 1Password, Auth
msgid "Use best models only"
msgstr "Käytä vain parhaita malleja"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Type"
msgid "10,000 workflow node executions"
msgstr "10 000 exécutions de nœuds de workflow"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 exécutions de nœuds de workflow"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Clé API copiée dans le presse-papiers"
msgid "API key is required"
msgstr "La clé API est requise"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrophe et point - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Comme ce workflow n'utilise pas de déclencheur manuel, le formulaire ne
msgid "Before"
msgstr "Avant"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Fermer la bannière"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Fermer le panneau latéral"
@@ -3125,10 +3114,10 @@ msgstr "élément du menu de commande"
msgid "Commands copied to clipboard"
msgstr "Commandes copiées dans le presse-papiers"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Virgules et point - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Contenu"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexte"
@@ -3895,7 +3883,6 @@ msgstr "Création de votre espace de travail"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Identifiants"
@@ -4369,7 +4356,7 @@ msgstr "Désactiver le workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Informations de débogage"
msgid "Decide which Sub-address fields you want to display"
msgstr "Décidez quels champs de sous-adresse vous souhaitez afficher"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Ne créez pas de contacts à partir de/pour les emails Gmail, Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Ne synchronisez pas les emails de team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Points et virgule - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Modifier {objectLabelPlural}"
msgid "Edit Account"
msgstr "Modifier le compte"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Échec de l'activation de la licence Enterprise. Vérifiez votre clé ou contactez l'assistance."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Échec de l'activation de la compétence"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Échec de la suppression des tâches. Veuillez réessayer plus tard."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Échec de la suppression de la compétence"
@@ -6686,11 +6661,6 @@ msgstr "Nom du champ"
msgid "Field on destination"
msgstr "Champ sur la destination"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Fichiers"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Masquer le groupe {groupValue}"
msgid "Hide hidden groups"
msgstr "Masquer les groupes cachés"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Identifiants IAM"
msgid "IAM credentials configured"
msgstr "Identifiants IAM configurés"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modèles pour ce fournisseur. Basculez pour activer ou désactiver."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Lundi"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Plus"
@@ -9610,7 +9566,7 @@ msgstr "Nouvel enregistrement"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nouvelle compétence"
@@ -9751,11 +9707,6 @@ msgstr "Aucun corps"
msgid "No calling code"
msgstr "Sans indicatif"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Aucune autorisation n'a été définie pour les objets individuels."
msgid "No record is required to trigger this workflow"
msgstr "Aucun enregistrement n'est requis pour déclencher ce flux de travail"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Ouvrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Ouvrir le panneau latéral"
@@ -10688,8 +10632,6 @@ msgstr "Organiser"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Autres"
@@ -11064,12 +11006,6 @@ msgstr ""
msgid "Pink"
msgstr "Rose"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Niveau des enregistrements"
msgid "Records"
msgstr "Enregistrements"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Réinitialiser"
msgid "Reset 2FA"
msgstr "Réinitialiser 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Réinitialiser à"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Réinitialiser par défaut"
@@ -12228,7 +12152,6 @@ msgstr "Russe"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Samedi"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Rechercher un rôle..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Rechercher une compétence..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Compétence"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Compétence activée"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Compétence supprimée"
@@ -13260,7 +13183,6 @@ msgstr "Compétence introuvable"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Compétences"
@@ -13406,10 +13328,10 @@ msgstr "Tris"
msgid "Source"
msgstr "Source"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Espaces et virgule - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Somme"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Dimanche"
@@ -13864,24 +13785,43 @@ msgstr "Relations système"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Paramètres du système"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Paramètres système - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Paramètres système - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Paramètres système - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Paramètres système - Lundi"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Paramètres système - Samedi"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Paramètres système - Dimanche"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14934,13 +14874,6 @@ msgstr "Non répertorié"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Débloquez des fonctionnalités Enterprise comme le SSO, la sécurité au niveau des lignes et les journaux d'audit."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15210,11 +15143,6 @@ msgstr "Utilisez des applications d'authentification et des extensions de naviga
msgid "Use best models only"
msgstr "Utiliser uniquement les meilleurs modèles"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
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
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. סוג"
msgid "10,000 workflow node executions"
msgstr "10,000 הפעלות של צמתים בתהליכי עבודה"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12ש - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20,000 הפעלות של צמתים בתהליכי עבודה"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24ש - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "מפתח API הועתק ללוח הגזירים"
msgid "API key is required"
msgstr "נדרש מפתח API"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "APIים"
msgid "APIs & Webhooks"
msgstr "API ו-Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "גרש ונקודה - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "מכיוון שתהליך עבודה זה אינו משתמש בהפעל
msgid "Before"
msgstr "לפני"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "סגור באנר"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "סגור את חלונית הצד"
@@ -3125,10 +3114,10 @@ msgstr "פריט תפריט פקודות"
msgid "Commands copied to clipboard"
msgstr "הפקודות הועתקו ללוח הגזירים"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "פסיקים ונקודה - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "תוכן"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "הקשר"
@@ -3895,7 +3883,6 @@ msgstr "יוצר את המרחב שלך"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "אישורים"
@@ -4369,7 +4356,7 @@ msgstr "השבת זרימת עבודה"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "מידע דיבוג"
msgid "Decide which Sub-address fields you want to display"
msgstr "החליטו אילו שדות כתובת משנה אתם רוצים להציג"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "אל תיצור אנשי קשר מ-Gmail, Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "אל תסנכרן הודעות מ-team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "נקודות ופסיק - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "עריכת {objectLabelPlural}"
msgid "Edit Account"
msgstr "ערוך חשבון"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "הפעלת רישיון ה-Enterprise נכשלה. אנא בדוק את המפתח שלך או פנה לתמיכה."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "הפעלת המיומנות נכשלה"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "נכשל במחיקה של עבודות. נא לנסות שוב מאוחר יותר."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "מחיקת המיומנות נכשלה"
@@ -6686,11 +6661,6 @@ msgstr "שם שדה"
msgid "Field on destination"
msgstr "שדה ביעד"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "קבצים"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "הסתר קבוצה {groupValue}"
msgid "Hide hidden groups"
msgstr "הסתר קבוצות מוסתרות"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "אישורי IAM"
msgid "IAM credentials configured"
msgstr "אישורי IAM הוגדרו"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "מודלים עבור ספק זה. החליפו כדי להפעיל או
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "יום שני"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "עוד"
@@ -9610,7 +9566,7 @@ msgstr "רשומה חדשה"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "מיומנות חדשה"
@@ -9751,11 +9707,6 @@ msgstr "ללא גוף"
msgid "No calling code"
msgstr "ללא קוד חיוג"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "לא הוגדרו הרשאות עבור אובייקטים בודדים.
msgid "No record is required to trigger this workflow"
msgstr "לא נדרש תיעוד להפעלת תהליך עבודה זה"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "פתח ב-Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "פתח את חלונית הצד"
@@ -10688,8 +10632,6 @@ msgstr "ארגון"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "אחר"
@@ -11064,12 +11006,6 @@ msgstr "תרשים עוגה"
msgid "Pink"
msgstr "ורוד"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "ברמת הרשומה"
msgid "Records"
msgstr "רישומים"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "איפוס"
msgid "Reset 2FA"
msgstr "אתחל אימות דו-שלבי"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "\\"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "איפוס לברירת מחדל"
@@ -12228,7 +12152,6 @@ msgstr "רוסית"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "יום שבת"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "חפש תפקיד..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "חפש מיומנות..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "מיומנות"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "מיומנות הופעלה"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "מיומנות נמחקה"
@@ -13260,7 +13183,6 @@ msgstr "מיומנות לא נמצאה"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "מיומנויות"
@@ -13406,10 +13328,10 @@ msgstr "מיונים"
msgid "Source"
msgstr "מקור"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "רווחים ופסיק - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "\\"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "יום ראשון"
@@ -13864,24 +13785,43 @@ msgstr "קשרי מערכת"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "הגדרות מערכת"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "הגדרות מערכת - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "הגדרות מערכת - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "הגדרות מערכת - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "הגדרות מערכת - יום שני"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "הגדרות מערכת - יום שבת"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "הגדרות מערכת - יום ראשון"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "לא מופיע ברשימה"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "פתח תכונות Enterprise כגון SSO, אבטחה ברמת שורה ויומני ביקורת."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "השתמש באפליקציות מאמת ובהרחבות דפדפן כ
msgid "Use best models only"
msgstr "השתמש רק במודלים הטובים ביותר"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Típus"
msgid "10,000 workflow node executions"
msgstr "10 000 munkafolyamat csomópont végrehajtás"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12 óra - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 munkafolyamat csomópont végrehajtás"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration} ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24 óra - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API kulcs vágólapra másolva"
msgid "API key is required"
msgstr "API-kulcs megadása kötelező"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API-k"
msgid "APIs & Webhooks"
msgstr "API-k és Webhookok"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrof és pont - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Mivel ez a munkafolyamat nem használ kézi indítást, az űrlap nem fo
msgid "Before"
msgstr "Előtt"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Banner bezárása"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Oldalsó panel bezárása"
@@ -3125,10 +3114,10 @@ msgstr "parancsmenü menüpont"
msgid "Commands copied to clipboard"
msgstr "A parancsok vágólapra másolva"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Vesszők és pont - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Tartalom"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Összefüggés"
@@ -3895,7 +3883,6 @@ msgstr "Munkaterülete létrehozása"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Hitelesítő adatok"
@@ -4369,7 +4356,7 @@ msgstr "Munkafolyamat deaktiválása"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Hibakeresési információ"
msgid "Decide which Sub-address fields you want to display"
msgstr "Döntse el, melyik Al-cím mezőket szeretné megjeleníteni"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Ne hozzon létre kapcsolatokat Gmail-, Outlook-emailekből/ba"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Ne szinkronizáljon emaileket a(z) team@ support@ noreply@... címekről"
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Pontok és vessző - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Szerkesztés {objectLabelPlural}"
msgid "Edit Account"
msgstr "Fiók szerkesztése"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Nem sikerült aktiválni az Enterprise licencet. Ellenőrizze a kulcsot, vagy lépjen kapcsolatba a támogatással."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Nem sikerült aktiválni a készséget"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Nem sikerült törölni az állásokat. Kérjük, próbálja meg újra később."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Nem sikerült törölni a készséget"
@@ -6686,11 +6661,6 @@ msgstr "Mező neve"
msgid "Field on destination"
msgstr "Mező a célállomáson"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Fájlok"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Csoport elrejtése: {groupValue}"
msgid "Hide hidden groups"
msgstr "Rejtett csoportok elrejtése"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM hitelesítő adatok"
msgid "IAM credentials configured"
msgstr "IAM hitelesítő adatok beállítva"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modellek ehhez a szolgáltatóhoz. Kapcsolóval engedélyezheti vagy let
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Hétfő"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Több"
@@ -9610,7 +9566,7 @@ msgstr "Új rekord"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Új készség"
@@ -9751,11 +9707,6 @@ msgstr "Nincs törzs"
msgid "No calling code"
msgstr "Hívókód nélkül"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Nincs jogosultság beállítva az egyes objektumokhoz."
msgid "No record is required to trigger this workflow"
msgstr "Nincs szükség rekordra ennek a munkafolyamatnak a elindításához"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Outlook megnyitása"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Oldalsó panel megnyitása"
@@ -10688,8 +10632,6 @@ msgstr "Rendszerezés"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Egyéb"
@@ -11064,12 +11006,6 @@ msgstr ""
msgid "Pink"
msgstr "Rózsaszín"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Rekordszintű"
msgid "Records"
msgstr "Rekordok"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Visszaállítás"
msgid "Reset 2FA"
msgstr "2FA visszaállítása"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Visszaállítás"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Visszaállítás alapértelmezettre"
@@ -12228,7 +12152,6 @@ msgstr "Orosz"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Szombat"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Szerepkör keresése..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Készség keresése..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Készség"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Készség aktiválva"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Készség törölve"
@@ -13260,7 +13183,6 @@ msgstr "A készség nem található"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Készségek"
@@ -13406,10 +13328,10 @@ msgstr "Rendezések"
msgid "Source"
msgstr "Forrás"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Szóközök és vessző - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Összeg"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Vasárnap"
@@ -13864,24 +13785,43 @@ msgstr "Rendszerkapcsolatok"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Rendszerbeállítások"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Rendszer beállítások - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Rendszer beállítások - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Rendszer Beállítások - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Rendszer beállítások - Hétfő"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Rendszer beállítások - Szombat"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Rendszer beállítások - Vasárnap"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Nem listázott"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Oldja fel az olyan Enterprise funkciókat, mint az SSO, a rekordszintű biztonság és az auditnaplók."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Használjon hitelesítő alkalmazásokat és böngésző-kiegészítőke
msgid "Use best models only"
msgstr "Csak a legjobb modellek használata"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
msgid "10,000 workflow node executions"
msgstr "10.000 esecuzioni di nodi del workflow"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 esecuzioni di nodi del workflow"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Chiave API copiata negli appunti"
msgid "API key is required"
msgstr "La chiave API è obbligatoria"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API e Webhook"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrofo e punto - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Poiché questo workflow non utilizza un'attivazione manuale, il modulo n
msgid "Before"
msgstr "Prima"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Chiudi banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Chiudi il pannello laterale"
@@ -3125,10 +3114,10 @@ msgstr "voce del menu comandi"
msgid "Commands copied to clipboard"
msgstr "Comandi copiati negli appunti"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Virgole e punto - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Contenuto"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contesto"
@@ -3895,7 +3883,6 @@ msgstr "Creazione del tuo spazio di lavoro"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenziali"
@@ -4369,7 +4356,7 @@ msgstr "Disattiva workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Informazioni di debug"
msgid "Decide which Sub-address fields you want to display"
msgstr "Decidere quali campi del sottoindirizzo visualizzare"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Non creare contatti da/per email di Gmail, Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Non sincronizzare email da team@ supporto@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punti e virgola - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Modifica {objectLabelPlural}"
msgid "Edit Account"
msgstr "Modifica Account"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Impossibile attivare la licenza Enterprise. Verifica la tua chiave oppure contatta l'assistenza."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Impossibile attivare l'abilità"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Impossibile eliminare i lavori. Per favore riprova più tardi."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Impossibile eliminare l'abilità"
@@ -6686,11 +6661,6 @@ msgstr "Nome del campo"
msgid "Field on destination"
msgstr "Campo sulla destinazione"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "File"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Nascondi gruppo {groupValue}"
msgid "Hide hidden groups"
msgstr "Nascondi gruppi nascosti"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Credenziali IAM"
msgid "IAM credentials configured"
msgstr "Credenziali IAM configurate"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modelli per questo provider. Attiva/disattiva per abilitare o disabilita
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Lunedì"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Altro"
@@ -9610,7 +9566,7 @@ msgstr "Nuovo record"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nuova abilità"
@@ -9751,11 +9707,6 @@ msgstr "Nessun corpo"
msgid "No calling code"
msgstr "Senza prefisso internazionale"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Nessuna autorizzazione è stata impostata per gli oggetti individuali."
msgid "No record is required to trigger this workflow"
msgstr "Non è richiesto alcun record per attivare questo flusso di lavoro"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Aprire Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Apri il pannello laterale"
@@ -10688,8 +10632,6 @@ msgstr "Organizza"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Altro"
@@ -11064,12 +11006,6 @@ msgstr "Grafico a Torta"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Livello record"
msgid "Records"
msgstr "Registri"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Reimposta"
msgid "Reset 2FA"
msgstr "Reimposta 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Reimposta a"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Ripristina ai valori predefiniti"
@@ -12228,7 +12152,6 @@ msgstr "Russo"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Sabato"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Cerca un ruolo..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Cerca un'abilità..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Abilità"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Abilità attivata"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Abilità eliminata"
@@ -13260,7 +13183,6 @@ msgstr "Abilità non trovata"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Abilità"
@@ -13406,10 +13328,10 @@ msgstr "Ordinamenti"
msgid "Source"
msgstr "Fonte"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Spazi e virgola - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Somma"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Domenica"
@@ -13864,24 +13785,43 @@ msgstr "Relazioni di sistema"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Impostazioni di sistema"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Impostazioni di sistema - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Impostazioni di sistema - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Impostazioni di sistema - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Impostazioni di sistema - Lunedì"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Impostazioni di sistema - Sabato"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Impostazioni di sistema - Domenica"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14934,13 +14874,6 @@ msgstr "Non in elenco"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Sblocca funzionalità Enterprise come SSO, sicurezza a livello di riga e registri di controllo."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15210,11 +15143,6 @@ msgstr "Usa app auth e estensioni del browser come 1Password, Authy, Microsoft A
msgid "Use best models only"
msgstr "Usa solo i modelli migliori"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. 種類"
msgid "10,000 workflow node executions"
msgstr "10,000 ワークフローノード実行"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12時間 - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20,000 ワークフローノード実行"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24時間 - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "APIキーがクリップボードにコピーされました"
msgid "API key is required"
msgstr "API キーは必須です"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "アポストロフィーとドット - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "このワークフローは手動トリガーを使用していないた
msgid "Before"
msgstr "以前"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "バナーを閉じる"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "サイドパネルを閉じる"
@@ -3125,10 +3114,10 @@ msgstr "コマンドメニュー項目"
msgid "Commands copied to clipboard"
msgstr "コマンドがクリップボードにコピーされました"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "コンマとドット - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "コンテンツ"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "コンテキスト"
@@ -3895,7 +3883,6 @@ msgstr "ワークスペースを作成中"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "認証情報"
@@ -4369,7 +4356,7 @@ msgstr "ワークフローを無効化"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "デバッグ情報"
msgid "Decide which Sub-address fields you want to display"
msgstr "表示したいサブアドレスフィールドを選択してください"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Gmail、Outlookメールから/への連絡先を作成しない"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "team@、support@、noreply@からメールを同期しない"
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "ドットとコンマ - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "{objectLabelPlural}を編集する"
msgid "Edit Account"
msgstr "アカウントを編集する"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Enterprise ライセンスの有効化に失敗しました。キーを確認するか、サポートに連絡してください。"
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "スキルの有効化に失敗しました"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "ジョブの削除に失敗しました。後でもう一度お試しください。"
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "スキルの削除に失敗しました"
@@ -6686,11 +6661,6 @@ msgstr "フィールド名"
msgid "Field on destination"
msgstr "宛先のフィールド"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "ファイル"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "グループ {groupValue} を非表示"
msgid "Hide hidden groups"
msgstr "隠されたグループを非表示"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM 認証情報"
msgid "IAM credentials configured"
msgstr "IAM 認証情報が設定されています"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "このプロバイダーのモデル。有効化/無効化をトグル
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "月曜日"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "もっと"
@@ -9610,7 +9566,7 @@ msgstr "新しいレコード"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "新規スキル"
@@ -9751,11 +9707,6 @@ msgstr "本文なし"
msgid "No calling code"
msgstr "国番号なし"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "個々のオブジェクトに対して権限が設定されていませ
msgid "No record is required to trigger this workflow"
msgstr "このワークフローを起動するために必要なレコードはありません"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Outlookで開く"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "サイドパネルを開く"
@@ -10688,8 +10632,6 @@ msgstr "整理"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "その他"
@@ -11064,12 +11006,6 @@ msgstr "パイチャート"
msgid "Pink"
msgstr "ピンク"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "レコードレベル"
msgid "Records"
msgstr "レコード"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "リセット"
msgid "Reset 2FA"
msgstr "2FAをリセット"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "リセット"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "デフォルトにリセット"
@@ -12228,7 +12152,6 @@ msgstr "ロシア語"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "土曜日"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "役割を検索..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "スキルを検索..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "スキル"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "スキルを有効化しました"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "スキルを削除しました"
@@ -13260,7 +13183,6 @@ msgstr "スキルが見つかりません"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "スキル"
@@ -13406,10 +13328,10 @@ msgstr "ソート},{"
msgid "Source"
msgstr "ソース"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "スペースとコンマ - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "合計"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "日曜日"
@@ -13864,24 +13785,43 @@ msgstr ""
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "システム設定"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "システム設定 - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "システム設定 - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "システム設定 - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "システム設定 - 月曜日"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "システム設定 - 土曜日"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "システム設定 - 日曜日"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "非公開"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "SSO、行レベルセキュリティ、監査ログなどの Enterprise 機能を利用可能にします。"
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "1Password、Authy、Microsoft Authenticatorなどの認証アプリや
msgid "Use best models only"
msgstr "最良のモデルのみを使用する"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. 유형"
msgid "10,000 workflow node executions"
msgstr "워크플로 노드 실행 10,000회"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12시간 - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "워크플로 노드 실행 20,000회"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24시간 - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API 키가 클립보드에 복사되었습니다"
msgid "API key is required"
msgstr "API 키가 필요합니다"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API 및 웹훅"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "아포스트로피와 점 - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "이 워크플로는 수동 트리거를 사용하지 않으므로 양식
msgid "Before"
msgstr "이전"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "배너 닫기"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "사이드 패널 닫기"
@@ -3125,10 +3114,10 @@ msgstr "명령 메뉴 항목"
msgid "Commands copied to clipboard"
msgstr "명령어가 클립보드에 복사되었습니다"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "쉼표와 점 - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "내용"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "컨텍스트"
@@ -3895,7 +3883,6 @@ msgstr "워크스페이스 생성 중"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "자격 증명"
@@ -4369,7 +4356,7 @@ msgstr "워크플로 비활성화"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "디버그 정보"
msgid "Decide which Sub-address fields you want to display"
msgstr "표시할 하위 주소 필드를 선택하세요"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Gmail, Outlook 이메일에서 연락처를 생성하지 마십시오."
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "team@, support@, noreply@ 이메일을 동기화하지 마십시오."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "점과 쉼표 - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "{objectLabelPlural} 편집"
msgid "Edit Account"
msgstr "계정 편집"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "엔터프라이즈 라이선스를 활성화하지 못했습니다. 키를 확인하거나 지원팀에 문의하세요."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "스킬 활성화에 실패했습니다"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "작업 삭제에 실패했습니다. 나중에 다시 시도하세요."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "스킬 삭제에 실패했습니다"
@@ -6686,11 +6661,6 @@ msgstr "필드 이름"
msgid "Field on destination"
msgstr "대상 필드"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "파일"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "그룹 {groupValue} 숨기기"
msgid "Hide hidden groups"
msgstr "숨겨진 그룹 숨기기"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM 자격 증명"
msgid "IAM credentials configured"
msgstr "IAM 자격 증명이 설정됨"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "이 공급자의 모델입니다. 토글하여 활성화하거나 비활
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "월요일"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "더보기"
@@ -9610,7 +9566,7 @@ msgstr "새 레코드"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "새 스킬"
@@ -9751,11 +9707,6 @@ msgstr "본문 없음"
msgid "No calling code"
msgstr "국가 번호 없음"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "개별 객체에 대한 권한이 설정되지 않았습니다."
msgid "No record is required to trigger this workflow"
msgstr "이 워크플로우를 트리거하기 위해 기록이 필요하지 않습니다."
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Outlook 열기"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "사이드 패널 열기"
@@ -10688,8 +10632,6 @@ msgstr "정리"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "기타"
@@ -11064,12 +11006,6 @@ msgstr "파이 차트"
msgid "Pink"
msgstr "분홍색"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "레코드 수준"
msgid "Records"
msgstr "레코드"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "초기화"
msgid "Reset 2FA"
msgstr "이중 인증 재설정"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "다음으로 재설정"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "기본값으로 재설정"
@@ -12228,7 +12152,6 @@ msgstr "러시아어"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "토요일"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "역할 검색..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "스킬 검색..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "스킬"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "스킬 활성화됨"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "스킬 삭제됨"
@@ -13260,7 +13183,6 @@ msgstr "스킬을 찾을 수 없음"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "스킬"
@@ -13406,10 +13328,10 @@ msgstr "정렬"
msgid "Source"
msgstr "소스"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "공백과 쉼표 - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "합계"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "일요일"
@@ -13864,24 +13785,43 @@ msgstr "시스템 관계"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "시스템 설정"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "시스템 설정 - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "시스템 설정 - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "시스템 설정 - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "시스템 설정 - 월요일"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "시스템 설정 - 토요일"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "시스템 설정 - 일요일"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "비공개"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "SSO, 행 수준 보안, 감사 로그 등의 엔터프라이즈 기능을 이용해 보세요."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "1Password, Authy, Microsoft Authenticator와 같은 인증 앱 및 브
msgid "Use best models only"
msgstr "최고의 모델만 사용"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Type"
msgid "10,000 workflow node executions"
msgstr "{num, plural, one {10 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12u - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "{num, plural, one {20 werkknooppuntuitvoering} other {# werkknooppuntuit
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24u - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-sleutel gekopieerd naar klembord"
msgid "API key is required"
msgstr "API-sleutel is vereist"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API's"
msgid "APIs & Webhooks"
msgstr "API's & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrof en punt - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Omdat deze workflow geen handmatige trigger gebruikt, wordt het formulie
msgid "Before"
msgstr "Voor"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Banner sluiten"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Zijpaneel sluiten"
@@ -3125,10 +3114,10 @@ msgstr "opdrachtmenu-item"
msgid "Commands copied to clipboard"
msgstr "Commando's gekopieerd naar klembord"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Komma's en punt - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Inhoud"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3895,7 +3883,6 @@ msgstr "Uw werkruimte maken"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Referenties"
@@ -4369,7 +4356,7 @@ msgstr "Workflow deactiveren"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Debug-info"
msgid "Decide which Sub-address fields you want to display"
msgstr "Beslis welke sub-adresvelden je wilt weergeven"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Maak geen contacten aan van/naar Gmail, Outlook e-mails"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Synchroniseer geen e-mails van team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punten en komma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Bewerk {objectLabelPlural}"
msgid "Edit Account"
msgstr "Account bewerken"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Activeren van Enterprise-licentie mislukt. Controleer uw Enterprise-sleutel of neem contact op met support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Activeren van vaardigheid mislukt"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Fout bij het verwijderen van taken. Probeer het later opnieuw."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Verwijderen van vaardigheid mislukt"
@@ -6686,11 +6661,6 @@ msgstr "Veldnaam"
msgid "Field on destination"
msgstr "Veld bij bestemming"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Bestanden"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Groep {groupValue} verbergen"
msgid "Hide hidden groups"
msgstr "Verborgen groepen verbergen"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM-referenties"
msgid "IAM credentials configured"
msgstr "IAM-referenties geconfigureerd"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modellen voor deze aanbieder. Schakel in of uit."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Maandag"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Meer"
@@ -9610,7 +9566,7 @@ msgstr "Nieuw record"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nieuwe vaardigheid"
@@ -9751,11 +9707,6 @@ msgstr "Geen body"
msgid "No calling code"
msgstr "Zonder landnummer"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Er zijn geen machtigingen ingesteld voor afzonderlijke objecten."
msgid "No record is required to trigger this workflow"
msgstr "Er is geen record vereist om deze workflow te activeren"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Open Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Zijpaneel openen"
@@ -10688,8 +10632,6 @@ msgstr "Ordenen"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Overige"
@@ -11064,12 +11006,6 @@ msgstr "Cirkeldiagram"
msgid "Pink"
msgstr "Roze"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Recordniveau"
msgid "Records"
msgstr "Records"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Resetten"
msgid "Reset 2FA"
msgstr "Reset 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Reset naar"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Herstel naar standaard"
@@ -12228,7 +12152,6 @@ msgstr "Russisch"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Zaterdag"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Zoek een rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Zoek een vaardigheid..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Vaardigheid"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Vaardigheid geactiveerd"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Vaardigheid verwijderd"
@@ -13260,7 +13183,6 @@ msgstr "Vaardigheid niet gevonden"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Vaardigheden"
@@ -13406,10 +13328,10 @@ msgstr "Sorteringen"
msgid "Source"
msgstr "Bron"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Spaties en komma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Som"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Zondag"
@@ -13864,24 +13785,43 @@ msgstr "Systeemrelaties"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Systeeminstellingen"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Systeeminstellingen - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Systeeminstellingen - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Systeeminstellingen - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Systeeminstellingen - Maandag"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Systeeminstellingen - Zaterdag"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Systeeminstellingen - Zondag"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14934,13 +14874,6 @@ msgstr "Niet-gelijst"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Ontgrendel Enterprise-functies zoals SSO, beveiliging op rijniveau en auditlogs."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15210,11 +15143,6 @@ msgstr "Gebruik authenticatore-apps en browserextensies zoals 1Password, Authy,
msgid "Use best models only"
msgstr "Alleen de beste modellen gebruiken"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Skriv"
msgid "10,000 workflow node executions"
msgstr "10 000 nodeutføringer av arbeidsflyt"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12t - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 nodeutføringer av arbeidsflyt"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24t - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-nøkkel kopiert til utklippstavlen"
msgid "API key is required"
msgstr "API-nøkkel er påkrevd"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API-er"
msgid "APIs & Webhooks"
msgstr "API og webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrof og punktum - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Siden denne arbeidsflyten ikke bruker en manuell utløser, vil ikke skje
msgid "Before"
msgstr "Før"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Lukk banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Lukk sidepanelet"
@@ -3125,10 +3114,10 @@ msgstr "menyelement i kommandomenyen"
msgid "Commands copied to clipboard"
msgstr "Kommandoer kopiert til utklippstavlen"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Kommaer og punktum - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Innhold"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontekst"
@@ -3895,7 +3883,6 @@ msgstr "Oppretter arbeidsområdet ditt"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Legitimasjon"
@@ -4369,7 +4356,7 @@ msgstr "Deaktiver Arbeidsflyt"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Feilsøkingsinformasjon"
msgid "Decide which Sub-address fields you want to display"
msgstr "Bestem hvilke underadressefelt du vil vise"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Ikke opprett kontakter fra/til Gmail og Outlook e-poster"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Ikke synkroniser e-poster fra team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punktum og komma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Rediger {objectLabelPlural}"
msgid "Edit Account"
msgstr "Rediger konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kunne ikke aktivere Enterprise-lisensen. Kontroller nøkkelen din eller kontakt kundestøtte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Kunne ikke aktivere ferdighet"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Mislyktes å slette jobber. Vennligst prøv igjen senere."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Kunne ikke slette ferdighet"
@@ -6686,11 +6661,6 @@ msgstr "Feltnavn"
msgid "Field on destination"
msgstr "Felt på destinasjon"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Filer"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Skjul gruppe {groupValue}"
msgid "Hide hidden groups"
msgstr "Skjul skjulte grupper"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM-legitimasjon"
msgid "IAM credentials configured"
msgstr "IAM-legitimasjon konfigurert"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modeller for denne tilbyderen. Veksle for å aktivere eller deaktivere."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Mandag"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mer"
@@ -9610,7 +9566,7 @@ msgstr "Ny post"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Ny ferdighet"
@@ -9751,11 +9707,6 @@ msgstr "Ingen body"
msgid "No calling code"
msgstr "Ingen landskode"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Ingen tillatelser er satt for individuelle objekter."
msgid "No record is required to trigger this workflow"
msgstr "Ingen post er nødvendig for å utløse denne arbeidsflyten"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Åpne Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Åpne sidepanelet"
@@ -10688,8 +10632,6 @@ msgstr "Organiser"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Annen"
@@ -11064,12 +11006,6 @@ msgstr "Sirkeldiagram"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Oppføringsnivå"
msgid "Records"
msgstr "Poster"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Tilbakestill"
msgid "Reset 2FA"
msgstr "Tilbakestill 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Tilbakestill til"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Nullstill til standard"
@@ -12228,7 +12152,6 @@ msgstr "Russisk"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Lørdag"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Søk etter en rolle..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Søk etter en ferdighet..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Ferdighet"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Ferdighet aktivert"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Ferdighet slettet"
@@ -13260,7 +13183,6 @@ msgstr "Ferdighet ble ikke funnet"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Ferdigheter"
@@ -13406,10 +13328,10 @@ msgstr "Sorteringer"
msgid "Source"
msgstr "Kilde"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Mellomrom og komma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Sum"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Søndag"
@@ -13864,24 +13785,43 @@ msgstr "Systemrelasjoner"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Systeminnstillinger"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Systeminnstillinger - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Systeminnstillinger - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Systeminnstillinger - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Systeminnstillinger - Mandag"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Systeminnstillinger - Lørdag"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Systeminnstillinger - Søndag"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Ulisteført"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Lås opp Enterprise-funksjoner som SSO, sikkerhet på radnivå og revisjonslogger."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Bruk autentiseringsapper og nettleserutvidelser som 1Password, Authy, Mi
msgid "Use best models only"
msgstr "Bruk kun de beste modellene"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Typ"
msgid "10,000 workflow node executions"
msgstr "10 000 wykonanych operacji w węźle procesów"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 wykonanych operacji w węźle procesów"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Klucz API został skopiowany do schowka"
msgid "API key is required"
msgstr "Klucz API jest wymagany"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API i webhooki"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrof i kropka - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Ponieważ ten przepływ pracy nie używa ręcznego wyzwalacza, formularz
msgid "Before"
msgstr "Przed"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Zamknij baner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Zamknij panel boczny"
@@ -3125,10 +3114,10 @@ msgstr "pozycja menu poleceń"
msgid "Commands copied to clipboard"
msgstr ""
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Przecinki i kropka - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Zawartość"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Kontekst"
@@ -3895,7 +3883,6 @@ msgstr "Tworzenie twojej przestrzeni pracy"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Dane uwierzytelniające"
@@ -4369,7 +4356,7 @@ msgstr "Deaktywuj przepływ pracy"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Informacje debugowania"
msgid "Decide which Sub-address fields you want to display"
msgstr "Zdecyduj, które pola podrzędnego adresu chcesz wyświetlić"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Nie twórz kontaktów z/dla Gmail, Outlook emails."
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Nie synchronizuj wiadomości e-mail od team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Kropki i przecinek - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Edytuj {objectLabelPlural}"
msgid "Edit Account"
msgstr "Edytuj Konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Nie udało się aktywować licencji Enterprise. Sprawdź swój klucz lub skontaktuj się ze wsparciem."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Nie udało się aktywować umiejętności"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Nie udało się usunąć zadań. Proszę spróbować ponownie później."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Nie udało się usunąć umiejętności"
@@ -6686,11 +6661,6 @@ msgstr "Nazwa pola"
msgid "Field on destination"
msgstr "Pole na miejscu docelowym"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Pliki"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Ukryj grupę {groupValue}"
msgid "Hide hidden groups"
msgstr "Ukryj ukryte grupy"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Dane uwierzytelniające IAM"
msgid "IAM credentials configured"
msgstr "Dane uwierzytelniające IAM skonfigurowane"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modele dla tego dostawcy. Przełącz, aby włączyć lub wyłączyć."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Poniedziałek"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Więcej"
@@ -9610,7 +9566,7 @@ msgstr "Nowy rekord"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nowa umiejętność"
@@ -9751,11 +9707,6 @@ msgstr "Brak treści"
msgid "No calling code"
msgstr "Bez kodu kraju"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Nie ustawiono uprawnień dla poszczególnych obiektów."
msgid "No record is required to trigger this workflow"
msgstr "Do uruchomienia tego procesu roboczego nie jest wymagany żaden zapis"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Otwórz Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Otwórz panel boczny"
@@ -10688,8 +10632,6 @@ msgstr "Organizuj"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Inne"
@@ -11064,12 +11006,6 @@ msgstr "Wykres kołowy"
msgid "Pink"
msgstr "Różowy"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Poziom rekordu"
msgid "Records"
msgstr "Rekordy"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Zresetuj"
msgid "Reset 2FA"
msgstr "Resetuj 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Zresetuj do"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Przywróć domyślne"
@@ -12228,7 +12152,6 @@ msgstr "rosyjski"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Sobota"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Szukaj roli..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Szukaj umiejętności..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Umiejętność"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Umiejętność aktywowana"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Umiejętność usunięta"
@@ -13260,7 +13183,6 @@ msgstr "Nie znaleziono umiejętności"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Umiejętności"
@@ -13406,10 +13328,10 @@ msgstr "Sortowanie"
msgid "Source"
msgstr "Źródło"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Spacje i przecinek - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Suma"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Niedziela"
@@ -13864,24 +13785,43 @@ msgstr "Relacje systemowe"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Ustawienia systemowe"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Ustawienia systemowe - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Ustawienia systemowe - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Ustawienia systemowe - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Ustawienia systemowe - Poniedziałek"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Ustawienia systemowe - Sobota"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Ustawienia systemowe - Niedziela"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Niepubliczne"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Odblokuj funkcje Enterprise, takie jak SSO, bezpieczeństwo na poziomie wiersza i dzienniki audytu."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Użyj aplikacji uwierzytelniających i rozszerzeń przeglądarki, takich
msgid "Use best models only"
msgstr "Używaj tylko najlepszych modeli"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+45 -117
View File
@@ -501,9 +501,9 @@ msgstr ""
msgid "10,000 workflow node executions"
msgstr ""
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgid "12h - {hour12Label}"
msgstr ""
#. js-lingui-id: 4EdXYs
@@ -537,9 +537,9 @@ msgstr ""
msgid "200 OK - {duration}ms"
msgstr ""
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgid "24h - {hour24Label}"
msgstr ""
#. js-lingui-id: QsMprd
@@ -1746,11 +1746,6 @@ msgstr ""
msgid "API key is required"
msgstr ""
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1816,9 +1811,9 @@ msgstr ""
msgid "APIs & Webhooks"
msgstr ""
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr ""
#. js-lingui-id: LMUw1U
@@ -2367,11 +2362,6 @@ msgstr ""
msgid "Before"
msgstr ""
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3023,7 +3013,6 @@ msgstr ""
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr ""
@@ -3120,9 +3109,9 @@ msgstr ""
msgid "Commands copied to clipboard"
msgstr ""
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgid "Commas and dot - {commasAndDotExample}"
msgstr ""
#. js-lingui-id: NBdIgR
@@ -3398,7 +3387,6 @@ msgstr ""
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr ""
@@ -3890,7 +3878,6 @@ msgstr ""
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr ""
@@ -4364,7 +4351,7 @@ msgstr ""
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4382,11 +4369,6 @@ msgstr ""
msgid "Decide which Sub-address fields you want to display"
msgstr ""
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4955,9 +4937,9 @@ msgstr ""
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr ""
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr ""
#. js-lingui-id: LE8J+K
@@ -5178,13 +5160,6 @@ msgstr ""
msgid "Edit Account"
msgstr ""
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6386,7 +6361,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr ""
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr ""
@@ -6411,7 +6386,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr ""
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr ""
@@ -6681,11 +6656,6 @@ msgstr ""
msgid "Field on destination"
msgstr ""
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6789,6 +6759,9 @@ msgid "Files"
msgstr ""
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7410,11 +7383,6 @@ msgstr ""
msgid "Hide hidden groups"
msgstr ""
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7523,16 +7491,6 @@ msgstr ""
msgid "IAM credentials configured"
msgstr ""
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9171,7 +9129,6 @@ msgstr ""
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr ""
@@ -9222,7 +9179,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr ""
@@ -9605,7 +9561,7 @@ msgstr ""
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr ""
@@ -9746,11 +9702,6 @@ msgstr ""
msgid "No calling code"
msgstr ""
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10049,12 +10000,6 @@ msgstr ""
msgid "No record is required to trigger this workflow"
msgstr ""
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10585,7 +10530,6 @@ msgstr ""
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr ""
@@ -10683,8 +10627,6 @@ msgstr ""
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr ""
@@ -11059,12 +11001,6 @@ msgstr ""
msgid "Pink"
msgstr ""
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11611,12 +11547,6 @@ msgstr ""
msgid "Records"
msgstr ""
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11909,11 +11839,6 @@ msgstr ""
msgid "Reset 2FA"
msgstr ""
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11921,7 +11846,6 @@ msgstr ""
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr ""
@@ -12223,7 +12147,6 @@ msgstr ""
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr ""
@@ -12349,7 +12272,7 @@ msgid "Search a role..."
msgstr ""
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr ""
@@ -13233,12 +13156,12 @@ msgid "Skill"
msgstr ""
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr ""
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr ""
@@ -13255,7 +13178,6 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr ""
@@ -13401,9 +13323,9 @@ msgstr ""
msgid "Source"
msgstr ""
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr ""
#. js-lingui-id: 65A04M
@@ -13710,7 +13632,6 @@ msgstr ""
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr ""
@@ -13859,24 +13780,43 @@ msgstr ""
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr ""
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr ""
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr ""
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr ""
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr ""
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr ""
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr ""
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14927,13 +14867,6 @@ msgstr ""
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr ""
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15203,11 +15136,6 @@ msgstr ""
msgid "Use best models only"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
msgid "10,000 workflow node executions"
msgstr "10.000 execuções de nós de workflow"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 execuções de nós de workflow"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Chave da API copiada para a área de transferência"
msgid "API key is required"
msgstr "A chave de API é obrigatória"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "APIs"
msgid "APIs & Webhooks"
msgstr "API e Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Como este fluxo de trabalho não usa um gatilho manual, o formulário n
msgid "Before"
msgstr "Antes"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Fechar banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr ""
@@ -3125,10 +3114,10 @@ msgstr "item do menu de comando"
msgid "Commands copied to clipboard"
msgstr "Comandos copiados para a área de transferência"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Vírgulas e ponto - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Conteúdo"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexto"
@@ -3895,7 +3883,6 @@ msgstr "Criando seu espaço de trabalho"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenciais"
@@ -4369,7 +4356,7 @@ msgstr "Desativar Workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Informações de depuração"
msgid "Decide which Sub-address fields you want to display"
msgstr "Decidir quais campos de sub-endereço você deseja exibir"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Não crie contatos de/para e-mails do Gmail, Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Não sincronize e-mails de team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Pontos e vírgula - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editar Conta"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Falha ao ativar a licença Enterprise. Verifique sua chave ou entre em contato com o suporte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Falha ao ativar a habilidade"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Falha ao excluir trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Falha ao excluir a habilidade"
@@ -6686,11 +6661,6 @@ msgstr "Nome do campo"
msgid "Field on destination"
msgstr "Campo no destino"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Arquivos"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Ocultar grupo {groupValue}"
msgid "Hide hidden groups"
msgstr "Ocultar grupos ocultos"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Credenciais do IAM"
msgid "IAM credentials configured"
msgstr "Credenciais do IAM configuradas"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modelos deste provedor. Alterne para ativar ou desativar."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Segunda-feira"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mais"
@@ -9610,7 +9566,7 @@ msgstr "Novo registro"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nova habilidade"
@@ -9751,11 +9707,6 @@ msgstr "Sem corpo"
msgid "No calling code"
msgstr "Sem código de chamada"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Nenhuma permissão foi definida para objetos individuais."
msgid "No record is required to trigger this workflow"
msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Abrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr ""
@@ -10688,8 +10632,6 @@ msgstr "Organizar"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Outros"
@@ -11064,12 +11006,6 @@ msgstr "Gráfico de Pizza"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Nível de registro"
msgid "Records"
msgstr "Registros"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Redefinir"
msgid "Reset 2FA"
msgstr "Redefinir 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Redefinir para"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Redefinir para o Padrão"
@@ -12228,7 +12152,6 @@ msgstr "Russo"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Sábado"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Pesquise um papel..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Pesquisar uma habilidade..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Habilidade"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Habilidade ativada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Habilidade excluída"
@@ -13260,7 +13183,6 @@ msgstr "Habilidade não encontrada"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Habilidades"
@@ -13406,10 +13328,10 @@ msgstr "Ordenações"
msgid "Source"
msgstr "Fonte"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Espaços e vírgula - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Soma"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Domingo"
@@ -13864,24 +13785,43 @@ msgstr "Relações do Sistema"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Configurações de Sistema"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Configurações do sistema - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Configurações do sistema - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Configurações do sistema - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Configurações do sistema - Segunda-feira"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Configurações do sistema - Sábado"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Configurações do sistema - Domingo"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Não Listado"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Desbloqueie recursos Enterprise como SSO, segurança em nível de linha e logs de auditoria."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Use apps autenticadores e extensões de navegador como 1Password, Authy,
msgid "Use best models only"
msgstr "Usar apenas os melhores modelos"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
msgid "10,000 workflow node executions"
msgstr "10.000 execuções de nós de workflow"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 execuções de nós de workflow"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Chave API copiada para a área de transferência"
msgid "API key is required"
msgstr "A chave de API é obrigatória"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "APIs"
msgid "APIs & Webhooks"
msgstr "API e Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Como este fluxo de trabalho não está usando um acionador manual, o for
msgid "Before"
msgstr "Antes"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Fechar banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Fechar painel lateral"
@@ -3125,10 +3114,10 @@ msgstr "item do menu de comandos"
msgid "Commands copied to clipboard"
msgstr "Comandos copiados para a área de transferência"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Vírgulas e ponto - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Conteúdo"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Contexto"
@@ -3895,7 +3883,6 @@ msgstr "Criando seu espaço de trabalho"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Credenciais"
@@ -4369,7 +4356,7 @@ msgstr "Desativar Workflow"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Informações de Depuração"
msgid "Decide which Sub-address fields you want to display"
msgstr "Decidir quais campos de Sub-endereço você deseja exibir"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Não criar contatos de/para emails do Gmail, Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Não sincronizar emails de team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Pontos e vírgula - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Editar {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editar Conta"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Falha ao ativar a licença Enterprise. Verifique a sua chave ou contacte o suporte."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Falha ao ativar a habilidade"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Falha ao deletar trabalhos. Por favor, tente novamente mais tarde."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Falha ao excluir a habilidade"
@@ -6686,11 +6661,6 @@ msgstr "Nome do Campo"
msgid "Field on destination"
msgstr "Campo no destino"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Arquivos"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Ocultar grupo {groupValue}"
msgid "Hide hidden groups"
msgstr "Ocultar grupos ocultos"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Credenciais do IAM"
msgid "IAM credentials configured"
msgstr "Credenciais do IAM configuradas"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modelos deste provedor. Alterne para ativar ou desativar."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Segunda-feira"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mais"
@@ -9610,7 +9566,7 @@ msgstr "Novo registo"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Nova Habilidade"
@@ -9751,11 +9707,6 @@ msgstr "Sem corpo"
msgid "No calling code"
msgstr "Sem indicativo"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Nenhuma permissão foi definida para objetos individuais."
msgid "No record is required to trigger this workflow"
msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Abrir Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Abrir painel lateral"
@@ -10688,8 +10632,6 @@ msgstr "Organizar"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Outros"
@@ -11064,12 +11006,6 @@ msgstr "Gráfico de Pizza"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Nível de registo"
msgid "Records"
msgstr "Registros"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Redefinir"
msgid "Reset 2FA"
msgstr "Redefinir 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Redefinir para"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Redefinir para padrão"
@@ -12228,7 +12152,6 @@ msgstr "Russo"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Sábado"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Procure uma função..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Pesquisar uma habilidade..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Habilidade"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Habilidade ativada"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Habilidade excluída"
@@ -13260,7 +13183,6 @@ msgstr "Habilidade não encontrada"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Habilidades"
@@ -13406,10 +13328,10 @@ msgstr "Ordenações"
msgid "Source"
msgstr "Fonte"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Espaços e vírgula - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Soma"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Domingo"
@@ -13864,24 +13785,43 @@ msgstr "Relações do sistema"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Configurações do sistema"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Definições do Sistema - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Definições do Sistema - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Definições do Sistema - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Definições do Sistema - Segunda-feira"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Definições do Sistema - Sábado"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Definições do Sistema - Domingo"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Não listado"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Desbloqueie recursos Enterprise como SSO, segurança ao nível da linha e registos de auditoria."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Use aplicativos autenticadores e extensões de navegador como 1Password,
msgid "Use best models only"
msgstr "Usar apenas os melhores modelos"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tip"
msgid "10,000 workflow node executions"
msgstr "10.000 de execuții ale nodurilor fluxului de lucru"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 de execuții ale nodurilor fluxului de lucru"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Cheia API copiată în clipboard"
msgid "API key is required"
msgstr "Cheia API este necesară"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API-uri"
msgid "APIs & Webhooks"
msgstr "API-uri şi Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrof și punct - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Deoarece acest flux de lucru nu folosește un declanșator manual, formu
msgid "Before"
msgstr "Înainte"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Închide bannerul"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Închide panoul lateral"
@@ -3125,10 +3114,10 @@ msgstr "element din meniul de comenzi"
msgid "Commands copied to clipboard"
msgstr "Comenzi copiate în clipboard"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Virgule și punct - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Conținut"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Context"
@@ -3895,7 +3883,6 @@ msgstr "Crearea spațiului tău de lucru"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Acreditări"
@@ -4369,7 +4356,7 @@ msgstr "Dezactivează Fluxul de Lucru"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Informații de depanare"
msgid "Decide which Sub-address fields you want to display"
msgstr "Decideți ce câmpuri Sub-adresă doriți să afișați"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Nu creați contacte din/în Gmail, Outlook emails"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Nu sincronizați emailuri de la team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Puncte și virgulă - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Editează {objectLabelPlural}"
msgid "Edit Account"
msgstr "Editează Cont"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Nu s-a putut activa licența Enterprise. Verificați cheia sau contactați asistența."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Activarea abilității a eșuat"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Eșuat la ștergerea locurilor de muncă. Încercați din nou mai târziu."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Ștergerea abilității a eșuat"
@@ -6686,11 +6661,6 @@ msgstr "Nume câmp"
msgid "Field on destination"
msgstr "Câmp pe destinație"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Fișiere"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Ascunde grupul {groupValue}"
msgid "Hide hidden groups"
msgstr "Ascundeți grupurile ascunse"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Acreditări IAM"
msgid "IAM credentials configured"
msgstr "Acreditări IAM configurate"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modele pentru acest furnizor. Comutați pentru a activa sau dezactiva."
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Luni"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mai mult"
@@ -9610,7 +9566,7 @@ msgstr "Înregistrare nouă"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Abilitate nouă"
@@ -9751,11 +9707,6 @@ msgstr "Fără Body"
msgid "No calling code"
msgstr "Fără cod de apelare"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Nu s-au setat permisiuni pentru obiectele individuale."
msgid "No record is required to trigger this workflow"
msgstr "Nu este necesară nicio înregistrare pentru a declanșa acest flux de lucru"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Deschide Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Deschide panoul lateral"
@@ -10688,8 +10632,6 @@ msgstr "Organizare"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Altul"
@@ -11064,12 +11006,6 @@ msgstr "Grafic circular"
msgid "Pink"
msgstr "Roz"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Nivel de înregistrare"
msgid "Records"
msgstr "Înregistrări"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Resetează"
msgid "Reset 2FA"
msgstr "Resetează 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Resetează la"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Resetați la implicit"
@@ -12228,7 +12152,6 @@ msgstr "Rusă"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Sâmbătă"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Căutați un rol..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Căutați o abilitate..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Abilitate"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Abilitate activată"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Abilitate ștearsă"
@@ -13260,7 +13183,6 @@ msgstr "Abilitatea nu a fost găsită"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Abilități"
@@ -13406,10 +13328,10 @@ msgstr "Sortări"
msgid "Source"
msgstr "Sursa"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Spații și virgulă - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Sumă"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Duminică"
@@ -13864,24 +13785,43 @@ msgstr "Relații de sistem"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Setările sistemului"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Setări sistem - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Setări Sistem - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Setări Sistem - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Setări sistem - Luni"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Setări sistem - Sâmbătă"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Setări sistem - Duminică"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Nelistat"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Deblocați funcționalități Enterprise precum SSO, securitatea la nivel de rând și jurnalele de audit."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Folosește aplicații de autentificare și extensii de browser precum 1P
msgid "Use best models only"
msgstr "Folosește doar cele mai bune modele"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
Binary file not shown.
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Тип"
msgid "10,000 workflow node executions"
msgstr "10.000 извршења чворова радног тока"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12ч - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 извршења чворова радног тока"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24ч - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API кључ копиран у клипборд"
msgid "API key is required"
msgstr "API кључ је обавезан"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "АПИ-и"
msgid "APIs & Webhooks"
msgstr "API и Вебхукс"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Апостроф и тачка - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Пошто овај радни ток не користи ручни о
msgid "Before"
msgstr "Пре"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Затвори банер"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Затвори бочни панел"
@@ -3125,10 +3114,10 @@ msgstr "ставка менија команде"
msgid "Commands copied to clipboard"
msgstr "Команде копиране у клипборд"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Запете и тачка - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Садржај"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Контекст"
@@ -3895,7 +3883,6 @@ msgstr "Креирање вашег радног простора"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Акредитиви"
@@ -4369,7 +4356,7 @@ msgstr "Деактивирај радни ток"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Информације за отклањање грешака"
msgid "Decide which Sub-address fields you want to display"
msgstr "Одлучите која поља под-адресе желите да прикажете"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Не креирајте контакте из/у Gmail, Outlook имеј
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Не синхронизујте имејлове са team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Тачке и запета - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Измени {objectLabelPlural}"
msgid "Edit Account"
msgstr "Измени налог"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Неуспело активирање Enterprise лиценце. Проверите свој кључ или контактирајте подршку."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Није успело активирање вештине"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Није успело брисање послова. Покушајте поново касније."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Није успело брисање вештине"
@@ -6686,11 +6661,6 @@ msgstr "Име поља"
msgid "Field on destination"
msgstr "Поље на одредишту"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Датотеке"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Сакриј групу {groupValue}"
msgid "Hide hidden groups"
msgstr "Сакриј скривене групе"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM акредитиви"
msgid "IAM credentials configured"
msgstr "IAM акредитиви су подешени"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Модели за овог провајдера. Пребаците да
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Понедељак"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Још"
@@ -9610,7 +9566,7 @@ msgstr "Нови запис"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Нова вештина"
@@ -9751,11 +9707,6 @@ msgstr "Нема тела"
msgid "No calling code"
msgstr "Без позивног кода"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Нема постављених дозвола за појединачн
msgid "No record is required to trigger this workflow"
msgstr "Запис није потребан за покретање овог рада"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Отвори Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Отвори бочни панел"
@@ -10688,8 +10632,6 @@ msgstr "Организујте"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Остало"
@@ -11064,12 +11006,6 @@ msgstr ""
msgid "Pink"
msgstr "Розе"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Ниво записа"
msgid "Records"
msgstr "Рекорди"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Ресетуј"
msgid "Reset 2FA"
msgstr "Ресетујте 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Ресетујте на"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Врати на подразумевано"
@@ -12228,7 +12152,6 @@ msgstr "Руски"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Субота"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Претражите улогу..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Претражите вештину..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Вештина"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Вештина је активирана"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Вештина је обрисана"
@@ -13260,7 +13183,6 @@ msgstr "Вештина није пронађена"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Вештине"
@@ -13406,10 +13328,10 @@ msgstr "Сортирања"
msgid "Source"
msgstr "Извор"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Размаци и запета - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Збир"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Недеља"
@@ -13864,24 +13785,43 @@ msgstr "Системске релације"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Подешавања система"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Подешавања система - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Подешавања система - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Подешавања система - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Подешавања система - Понедељак"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Подешавања система - Субота"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Подешавања система - Недеља"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Непостед"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Откључајте Enterprise функције као што су SSO, безбедност на нивоу реда и дневници ревизије."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Користите апликације за аутентификаци
msgid "Use best models only"
msgstr "Користите само најбоље моделе"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+57 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Typ"
msgid "10,000 workflow node executions"
msgstr "10 000 utföranden av arbetsflödesnoder"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 utföranden av arbetsflödesnoder"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-nyckel kopierad till urklipp"
msgid "API key is required"
msgstr "API-nyckel krävs"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API:er"
msgid "APIs & Webhooks"
msgstr "API:er & Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Apostrof och punkt - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Eftersom det här arbetsflödet inte använder en manuell utlösare öpp
msgid "Before"
msgstr "Före"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Stäng banner"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Stäng sidopanelen"
@@ -3125,10 +3114,10 @@ msgstr "kommandomenyalternativ"
msgid "Commands copied to clipboard"
msgstr "Kommandon kopierade till urklipp"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Kommatecken och punkt - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Innehåll"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Sammanhang"
@@ -3895,7 +3883,6 @@ msgstr "Skapar din arbetsyta"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Autentiseringsuppgifter"
@@ -4369,7 +4356,7 @@ msgstr "Inaktivera arbetsflöde"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Felsökningsinfo"
msgid "Decide which Sub-address fields you want to display"
msgstr "Bestäm vilka deladressfält du vill visa"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Skapa inte kontakter från/till Gmail, Outlook e-post"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Synka inte e-post från team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Punkt och komma - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Redigera {objectLabelPlural}"
msgid "Edit Account"
msgstr "Redigera Konto"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Det gick inte att aktivera Enterprise-licensen. Kontrollera din nyckel eller kontakta support."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Det gick inte att aktivera färdigheten"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Det gick inte att radera jobben. Försök igen senare."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Det gick inte att ta bort färdigheten"
@@ -6686,11 +6661,6 @@ msgstr "Fältnamn"
msgid "Field on destination"
msgstr "Fält på destinationen"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Filer"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Dölj grupp {groupValue}"
msgid "Hide hidden groups"
msgstr "Dölj dolda grupper"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM-autentiseringsuppgifter"
msgid "IAM credentials configured"
msgstr "IAM-autentiseringsuppgifter är konfigurerade"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Modeller för den här leverantören. Växla för att aktivera eller ina
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr ""
"M\n"
@@ -9229,7 +9186,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Mer"
@@ -9612,7 +9568,7 @@ msgstr "Ny post"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Ny färdighet"
@@ -9753,11 +9709,6 @@ msgstr "Ingen body"
msgid "No calling code"
msgstr "Utan uppringningskod"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10056,12 +10007,6 @@ msgstr "Inga behörigheter har satts för enskilda objekt."
msgid "No record is required to trigger this workflow"
msgstr "Ingen post krävs för att utlösa detta arbetsflöde"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10592,7 +10537,6 @@ msgstr "Öppna Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Öppna sidopanelen"
@@ -10690,8 +10634,6 @@ msgstr "Organisera"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Annat"
@@ -11066,12 +11008,6 @@ msgstr "Cirkeldiagram"
msgid "Pink"
msgstr "Rosa"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11618,12 +11554,6 @@ msgstr "Postnivå"
msgid "Records"
msgstr "Poster"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11916,11 +11846,6 @@ msgstr "Återställ"
msgid "Reset 2FA"
msgstr "Återställ 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11928,7 +11853,6 @@ msgstr "Återställ till"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Återställ till standard"
@@ -12230,7 +12154,6 @@ msgstr "Russian"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr ""
"L\n"
@@ -12358,7 +12281,7 @@ msgid "Search a role..."
msgstr "Sök en roll..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Sök en färdighet..."
@@ -13242,12 +13165,12 @@ msgid "Skill"
msgstr "Färdighet"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Färdighet aktiverad"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Färdighet raderad"
@@ -13264,7 +13187,6 @@ msgstr "Färdighet hittades inte"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Färdigheter"
@@ -13410,10 +13332,10 @@ msgstr "Sorteringar"
msgid "Source"
msgstr "Källa"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Mellanslag och komma - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13719,7 +13641,6 @@ msgstr "Summa"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr ""
"S\n"
@@ -13870,24 +13791,49 @@ msgstr "Systemrelationer"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Systeminställningar"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Systeminställningar - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Systeminställningar - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Systeminställningar - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr ""
"Systeminstelln\n"
"gartioner - M0andags"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr ""
"Systeminstelln\n"
"gartioner - L0aurdag"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr ""
"Systeminstelln\n"
"gartioner - S0and"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14940,13 +14886,6 @@ msgstr "Olistar"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Lås upp Enterprise-funktioner som SSO, säkerhet på radnivå och revisionsloggar."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15216,11 +15155,6 @@ msgstr "Använd autentiseringsappar och webbläsartillägg som 1Password, Authy,
msgid "Use best models only"
msgstr ""
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Tür"
msgid "10,000 workflow node executions"
msgstr "10.000 iş akışı düğüm çalıştırılması"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12 saat - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 iş akışı düğüm çalıştırılması"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24 saat - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API Anahtarı panoya kopyalandı"
msgid "API key is required"
msgstr "API anahtarı gerekli"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API'ler"
msgid "APIs & Webhooks"
msgstr "API & Webhook'lar"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Kesme işareti ve nokta - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Bu iş akışı manuel bir tetikleyici kullanmadığından, form arayüz
msgid "Before"
msgstr "Önce"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Afişi kapat"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Yan paneli kapat"
@@ -3125,10 +3114,10 @@ msgstr "komut menüsü öğesi"
msgid "Commands copied to clipboard"
msgstr "Komutlar panoya kopyalandı"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Virgüller ve nokta - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "İçerik"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Bağlam"
@@ -3895,7 +3883,6 @@ msgstr "Çalışma alanınızı oluşturma"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Kimlik Bilgileri"
@@ -4369,7 +4356,7 @@ msgstr "İş Akışını Devre Dışı Bırak"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Hata Ayıklama Bilgisi"
msgid "Decide which Sub-address fields you want to display"
msgstr "Görüntülemek istediğiniz Alt-adres alanlarını seçin"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Gmail'e, Outlook e-postalarına kişi oluşturma."
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "team@, support@, noreply@... adreslerinden e-postaları senkronize etme."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Noktalar ve virgül - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "{objectLabelPlural} Düzenle"
msgid "Edit Account"
msgstr "Hesap Düzenle"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Kurumsal lisans etkinleştirilemedi. Lütfen anahtarınızı kontrol edin veya destekle iletişime geçin."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Beceri etkinleştirilemedi"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "İş silme başarısız oldu. Lütfen daha sonra tekrar deneyiniz."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Beceri silinemedi"
@@ -6686,11 +6661,6 @@ msgstr "Alan Adı"
msgid "Field on destination"
msgstr "Hedefteki alan"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Dosyalar"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "{groupValue} grubunu gizle"
msgid "Hide hidden groups"
msgstr "Gizli grupları gizle"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM kimlik bilgileri"
msgid "IAM credentials configured"
msgstr "IAM kimlik bilgileri yapılandırıldı"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Bu sağlayıcıya ait modeller. Etkinleştirmek veya devre dışı bıra
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Pazartesi"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Daha Fazla"
@@ -9610,7 +9566,7 @@ msgstr "Yeni kayıt"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Yeni beceri"
@@ -9751,11 +9707,6 @@ msgstr "Gövde yok"
msgid "No calling code"
msgstr "Arama kodu yok"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Bireysel nesneler için izinler ayarlanmadı."
msgid "No record is required to trigger this workflow"
msgstr "Bu iş akışını tetiklemek için bir kayda gerek yok"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Outlook'u Aç"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Yan paneli aç"
@@ -10688,8 +10632,6 @@ msgstr "Düzenle"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Diğer"
@@ -11064,12 +11006,6 @@ msgstr "Pasta Grafiği"
msgid "Pink"
msgstr "Pembe"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Kayıt düzeyi"
msgid "Records"
msgstr "Kayıtlar"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Sıfırla"
msgid "Reset 2FA"
msgstr "2FA Sıfırla"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Sıfırla"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Varsayılana Sıfırla"
@@ -12228,7 +12152,6 @@ msgstr "Rusça"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Cumartesi"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Bir rol ara..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Bir beceri arayın..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Beceri"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Beceri etkinleştirildi"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Beceri silindi"
@@ -13260,7 +13183,6 @@ msgstr "Beceri bulunamadı"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Beceriler"
@@ -13406,10 +13328,10 @@ msgstr "Sıralamalar"
msgid "Source"
msgstr "Kaynak"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Boşluklar ve virgül - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Toplam"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Pazar"
@@ -13864,24 +13785,43 @@ msgstr "Sistem İlişkileri"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Sistem ayarları"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Sistem ayarları - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Sistem Ayarları - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Sistem Ayarları - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Sistem ayarları - Pazartesi"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Sistem ayarları - Cumartesi"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Sistem ayarları - Pazar"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Liste dışı"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "SSO, satır düzeyi güvenlik ve denetim kayıtları gibi kurumsal özelliklerin kilidini açın."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "1Password, Authy, Microsoft Authenticator gibi doğrulama uygulamaları
msgid "Use best models only"
msgstr "Yalnızca en iyi modelleri kullan"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Тип"
msgid "10,000 workflow node executions"
msgstr "10 000 виконань вузлів робочого процесу"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12 год - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20 000 виконань вузлів робочого процесу"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration} мс"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24 год - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API-ключ скопійовано в буфер обміну"
msgid "API key is required"
msgstr "Ключ API обов'язковий"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API та Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Апостроф і крапка - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Оскільки цей робочий процес не викорис
msgid "Before"
msgstr "До"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Закрити банер"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Закрити бічну панель"
@@ -3125,10 +3114,10 @@ msgstr "пункт меню команд"
msgid "Commands copied to clipboard"
msgstr "Команди скопійовані в буфер обміну"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Коми і крапка - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Вміст"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Контекст"
@@ -3895,7 +3883,6 @@ msgstr "Створення вашого робочого простору"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Облікові дані"
@@ -4369,7 +4356,7 @@ msgstr "Деактивувати процес"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Інформація для налагодження"
msgid "Decide which Sub-address fields you want to display"
msgstr "Виберіть, які поля під-адреси ви хочете відобразити"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Не створювати контакти до/з Gmail, листів O
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Не синхронізувати листи з team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Крапки і кома - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Редагувати {objectLabelPlural}"
msgid "Edit Account"
msgstr "Редагувати обліковий запис"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Не вдалося активувати ліцензію Enterprise. Перевірте свій ключ або зверніться до служби підтримки."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Не вдалося активувати навичку"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Не вдалося видалити завдання. Будь ласка, спробуйте пізніше."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Не вдалося видалити навичку"
@@ -6686,11 +6661,6 @@ msgstr "Назва поля"
msgid "Field on destination"
msgstr "Поле на призначенні"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Файли"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Приховати групу {groupValue}"
msgid "Hide hidden groups"
msgstr "Приховати приховані групи"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Облікові дані IAM"
msgid "IAM credentials configured"
msgstr "Облікові дані IAM налаштовано"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Моделі для цього провайдера. Перемикай
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Понеділок"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Більше"
@@ -9610,7 +9566,7 @@ msgstr "Новий запис"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Нова навичка"
@@ -9751,11 +9707,6 @@ msgstr "Без тіла"
msgid "No calling code"
msgstr "Без коду країни"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "‎Не встановлено дозволів для окремих о
msgid "No record is required to trigger this workflow"
msgstr "Для запуску цього робочого процесу не потрібен запис"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Відкрити Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Відкрити бічну панель"
@@ -10688,8 +10632,6 @@ msgstr "Упорядкувати"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Інший"
@@ -11064,12 +11006,6 @@ msgstr "Кругова діаграма"
msgid "Pink"
msgstr "Рожевий"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Рівень запису"
msgid "Records"
msgstr "Записи"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Скинути"
msgid "Reset 2FA"
msgstr "Скинути 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Скинути до"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Скинути до значення за замовчуванням"
@@ -12228,7 +12152,6 @@ msgstr "Російська"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Субота"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Знайти роль..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Пошук навички..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Навичка"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Навичку активовано"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Навичку видалено"
@@ -13260,7 +13183,6 @@ msgstr "Навичку не знайдено"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Навички"
@@ -13406,10 +13328,10 @@ msgstr "Сортування"
msgid "Source"
msgstr "Джерело"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Пробіли і кома - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Сума"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Неділя"
@@ -13864,24 +13785,43 @@ msgstr "Системні зв'язки"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Системні налаштування"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Системні налаштування - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Системні налаштування - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Системні налаштування - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Системні налаштування - Понеділок"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Системні налаштування - Субота"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Системні налаштування - Неділя"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14934,13 +14874,6 @@ msgstr "Не перелічено"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Відкрийте доступ до функцій Enterprise, як-от SSO, безпека на рівні рядка та журнали аудиту."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15210,11 +15143,6 @@ msgstr "Використовуйте додатки для аутентифік
msgid "Use best models only"
msgstr "Використовувати лише найкращі моделі"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. Loại"
msgid "10,000 workflow node executions"
msgstr "10.000 lượt thực thi nút quy trình công việc"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12h - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20.000 lượt thực thi nút quy trình công việc"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24h - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "Đã sao chép khóa API vào bảng tạm"
msgid "API key is required"
msgstr "Khóa API là bắt buộc"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API và Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "Dấu nháy và dấu chấm - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "Vì quy trình này không sử dụng kích hoạt thủ công, biểu
msgid "Before"
msgstr "Trước"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "Đóng biểu ngữ"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "Đóng ngăn bên"
@@ -3125,10 +3114,10 @@ msgstr "mục menu lệnh"
msgid "Commands copied to clipboard"
msgstr "Đã sao chép lệnh vào bảng tạm"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "Dấu phẩy và dấu chấm - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "Nội dung"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "Ngữ cảnh"
@@ -3895,7 +3883,6 @@ msgstr "Đang tạo không gian làm việc của bạn"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "Thông tin xác thực"
@@ -4369,7 +4356,7 @@ msgstr "Hủy kích hoạt Quy trình làm việc"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "Thông tin gỡ lỗi"
msgid "Decide which Sub-address fields you want to display"
msgstr "Quyết định các trường Phân nhóm địa chỉ mà bạn muốn hiển thị"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "Không tạo danh bạ từ/đến email Gmail, Outlook"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "Không đồng bộ email từ team@ support@ noreply@..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "Dấu chấm và dấu phẩy - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "Chỉnh sửa {objectLabelPlural}"
msgid "Edit Account"
msgstr "Chỉnh Sửa Tài Khoản"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "Không thể kích hoạt giấy phép Enterprise. Vui lòng kiểm tra khóa của bạn hoặc liên hệ bộ phận hỗ trợ."
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "Kích hoạt kỹ năng thất bại"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "Không thể xóa các công việc. Vui lòng thử lại sau."
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "Xóa kỹ năng thất bại"
@@ -6686,11 +6661,6 @@ msgstr "Tên Trường"
msgid "Field on destination"
msgstr "Trường ở điểm đến"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "Tập tin"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "Ẩn nhóm {groupValue}"
msgid "Hide hidden groups"
msgstr "Ẩn nhóm ẩn"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "Thông tin xác thực IAM"
msgid "IAM credentials configured"
msgstr "Thông tin xác thực IAM đã được cấu hình"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "Các mô hình cho nhà cung cấp này. Chuyển để bật hoặc t
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "Thứ Hai"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "Thêm nữa"
@@ -9610,7 +9566,7 @@ msgstr "Bản ghi mới"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "Kỹ năng mới"
@@ -9751,11 +9707,6 @@ msgstr "Không có phần thân"
msgid "No calling code"
msgstr "Không có mã quốc gia"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "Chưa thiết lập quyền cho các đối tượng cá nhân."
msgid "No record is required to trigger this workflow"
msgstr "Không cần bản ghi nào để kích hoạt quy trình công việc này"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "Mở Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "Mở ngăn bên"
@@ -10688,8 +10632,6 @@ msgstr "Sắp xếp"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "Khác"
@@ -11064,12 +11006,6 @@ msgstr "Biểu đồ hình tròn"
msgid "Pink"
msgstr "Hồng"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "Cấp bản ghi"
msgid "Records"
msgstr "Hồ Sơ"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "Đặt lại"
msgid "Reset 2FA"
msgstr "Đặt lại 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "Đặt lại thành"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "Đặt lại về mặc định"
@@ -12228,7 +12152,6 @@ msgstr "Tiếng Nga"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "Thứ Bảy"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "Tìm kiếm một vai trò..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "Tìm một kỹ năng..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "Kỹ năng"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "Đã kích hoạt kỹ năng"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "Đã xóa kỹ năng"
@@ -13260,7 +13183,6 @@ msgstr "Không tìm thấy kỹ năng"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "Kỹ năng"
@@ -13406,10 +13328,10 @@ msgstr "Sắp xếp"
msgid "Source"
msgstr "Nguồn"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "Dấu cách và dấu phẩy - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "Tổng cộng"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "Chủ Nhật"
@@ -13864,24 +13785,43 @@ msgstr "Quan hệ hệ thống"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "Cài đặt hệ thống"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "Cài đặt hệ thống - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "Cài đặt hệ thống - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "Cài đặt hệ thống - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "Cài đặt hệ thống - Thứ Hai"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "Cài đặt hệ thống - Thứ Bảy"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "Cài đặt hệ thống - Chủ Nhật"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "Không được liệt kê"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "Mở khóa các tính năng Enterprise như SSO, bảo mật cấp độ hàng và nhật ký kiểm toán."
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "Sử dụng ứng dụng xác thực và tiện ích mở rộng trình
msgid "Use best models only"
msgstr "Chỉ sử dụng các mô hình tốt nhất"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. 类型"
msgid "10,000 workflow node executions"
msgstr "10,000 次工作流节点执行"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12小时 - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20,000 次工作流节点执行"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration}ms"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24小时 - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API 密钥已复制到剪贴板"
msgid "API key is required"
msgstr "API 密钥为必填项"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "接口"
msgid "APIs & Webhooks"
msgstr "API 和 Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "撇号和点 - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "由于此工作流未使用手动触发器,表单不会在界面上方
msgid "Before"
msgstr "之前"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "关闭横幅"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "关闭侧边栏"
@@ -3125,10 +3114,10 @@ msgstr "命令菜单项"
msgid "Commands copied to clipboard"
msgstr "命令已复制到剪贴板"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "逗号和点 - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "内容"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "上下文"
@@ -3895,7 +3883,6 @@ msgstr "创建您的工作区"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "凭据"
@@ -4369,7 +4356,7 @@ msgstr "停用工作流"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "调试信息"
msgid "Decide which Sub-address fields you want to display"
msgstr "请选择您要显示的子地址字段"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "不要将联系人从/到Gmail、Outlook邮件创建"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "不要同步来自team@、support@、noreply@...的电子邮件"
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "点和逗号 - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "编辑 {objectLabelPlural}"
msgid "Edit Account"
msgstr "编辑账户"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "激活企业许可证失败。请检查您的密钥或联系支持。"
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr "启用技能失败。"
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "删除任务失败。请稍后再试。"
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr "删除技能失败。"
@@ -6686,11 +6661,6 @@ msgstr "字段名称"
msgid "Field on destination"
msgstr "目的地字段"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "文件"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "隐藏组 {groupValue}"
msgid "Hide hidden groups"
msgstr "隐藏隐藏组"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM 凭据"
msgid "IAM credentials configured"
msgstr "IAM 凭据已配置"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "此提供商的模型。切换以启用或禁用。"
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "星期一"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "更多"
@@ -9610,7 +9566,7 @@ msgstr "新记录"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr "新建技能"
@@ -9751,11 +9707,6 @@ msgstr "无正文"
msgid "No calling code"
msgstr "无国家区号"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "尚未为个人对象设置权限。"
msgid "No record is required to trigger this workflow"
msgstr "不需要记录即可触发此工作流"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "打开Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "打开侧边栏"
@@ -10688,8 +10632,6 @@ msgstr "整理"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "其他"
@@ -11064,12 +11006,6 @@ msgstr "饼图"
msgid "Pink"
msgstr "粉色"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "记录级"
msgid "Records"
msgstr "记录"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "重置"
msgid "Reset 2FA"
msgstr "重置 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "重置为"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "重置为默认"
@@ -12228,7 +12152,6 @@ msgstr "俄语"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "星期六"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "搜索角色..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr "搜索技能..."
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr "技能"
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr "技能已启用"
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr "技能已删除"
@@ -13260,7 +13183,6 @@ msgstr "未找到技能。"
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr "技能"
@@ -13406,10 +13328,10 @@ msgstr "排序"
msgid "Source"
msgstr "来源"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "空格和逗号 - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "总和"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "星期日"
@@ -13864,24 +13785,43 @@ msgstr "系统关系"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "系统设置"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "系统设置 - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "系统设置 - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "系统设置 - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "系统设置 - 星期一"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "系统设置 - 星期六"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "系统设置 - 星期日"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "未列出"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "解锁包括 SSO、行级安全和审计日志在内的企业功能。"
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "使用类似于 1Password、Authy、Microsoft Authenticator 的身份验
msgid "Use best models only"
msgstr "仅使用最佳模型"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
+51 -123
View File
@@ -506,10 +506,10 @@ msgstr "1. 類型"
msgid "10,000 workflow node executions"
msgstr "10,000 次工作流程節點執行"
#. js-lingui-id: rU05hS
#. js-lingui-id: bM5lnW
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "12h"
msgstr ""
msgid "12h - {hour12Label}"
msgstr "12小時 - {hour12Label}"
#. js-lingui-id: 4EdXYs
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -542,10 +542,10 @@ msgstr "20,000 次工作流程節點執行"
msgid "200 OK - {duration}ms"
msgstr "200 OK - {duration} 毫秒"
#. js-lingui-id: W1k7eB
#. js-lingui-id: mwTnop
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "24h"
msgstr ""
msgid "24h - {hour24Label}"
msgstr "24小時 - {hour24Label}"
#. js-lingui-id: QsMprd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
@@ -1751,11 +1751,6 @@ msgstr "API 密鑰已複製到剪貼板"
msgid "API key is required"
msgstr "需要提供 API 金鑰"
#. js-lingui-id: sb6i1L
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
msgid "API key name cannot be empty"
msgstr ""
#. js-lingui-id: Widx6n
#: src/modules/settings/roles/components/SettingsRolesList.tsx
msgid "API key roles"
@@ -1821,10 +1816,10 @@ msgstr "API"
msgid "APIs & Webhooks"
msgstr "API 和 Webhooks"
#. js-lingui-id: 0UMxlw
#. js-lingui-id: BnUHmx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Apostrophe and dot"
msgstr ""
msgid "Apostrophe and dot - {apostropheAndDotExample}"
msgstr "撇號和點 - {apostropheAndDotExample}"
#. js-lingui-id: LMUw1U
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
@@ -2372,11 +2367,6 @@ msgstr "由於此工作流程未使用手動觸發,表單不會在介面上方
msgid "Before"
msgstr "之前"
#. js-lingui-id: KYr9vA
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
msgid "Best"
msgstr ""
#. js-lingui-id: NgFKo1
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
msgid "between {startMonth} and {endMonth}"
@@ -3028,7 +3018,6 @@ msgstr "關閉橫幅"
#. js-lingui-id: saip/v
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Close side panel"
msgstr "關閉側邊面板"
@@ -3125,10 +3114,10 @@ msgstr "指令選單項目"
msgid "Commands copied to clipboard"
msgstr "命令已複製到剪貼板"
#. js-lingui-id: QeCopv
#. js-lingui-id: A9u+7N
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Commas and dot"
msgstr ""
msgid "Commas and dot - {commasAndDotExample}"
msgstr "逗號和點 - {commasAndDotExample}"
#. js-lingui-id: NBdIgR
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
@@ -3403,7 +3392,6 @@ msgstr "內容"
#. js-lingui-id: M73whl
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
#: src/modules/ai/components/RoutingDebugDisplay.tsx
msgid "Context"
msgstr "上下文"
@@ -3895,7 +3883,6 @@ msgstr "創建您的工作區"
#. js-lingui-id: HAzhV7
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "Credentials"
msgstr "憑證"
@@ -4369,7 +4356,7 @@ msgstr "停用工作流程"
#. js-lingui-id: yAT3be
#: src/pages/settings/SettingsProfile.tsx
#: src/pages/settings/data-model/SettingsObjectTable.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
@@ -4387,11 +4374,6 @@ msgstr "除錯資訊"
msgid "Decide which Sub-address fields you want to display"
msgstr "決定您希望顯示哪些子地址欄位"
#. js-lingui-id: Bn9+El
#: src/modules/ai/components/AIChatEditorSection.tsx
msgid "default"
msgstr ""
#. js-lingui-id: ovBPCi
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
@@ -4960,10 +4942,10 @@ msgstr "不要從/向 Gmail、Outlook 電子郵件創建聯絡人"
msgid "Don't sync emails from team@ support@ noreply@..."
msgstr "不要同步來自 team@、support@、noreply@ 的電子郵件..."
#. js-lingui-id: Wm78zZ
#. js-lingui-id: bd+DPX
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Dots and comma"
msgstr ""
msgid "Dots and comma - {dotsAndCommaExample}"
msgstr "點和逗號 - {dotsAndCommaExample}"
#. js-lingui-id: LE8J+K
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
@@ -5183,13 +5165,6 @@ msgstr "編輯 {objectLabelPlural}"
msgid "Edit Account"
msgstr "編輯帳戶"
#. js-lingui-id: t1EOLt
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
msgid "Edit actions"
msgstr ""
#. js-lingui-id: GpnfNN
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
msgid "Edit Dashboard"
@@ -6391,7 +6366,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
msgstr "無法啟用企業授權。請檢查您的金鑰或聯絡支援。"
#. js-lingui-id: vJiM7T
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to activate skill"
msgstr ""
@@ -6416,7 +6391,7 @@ msgid "Failed to delete jobs. Please try again later."
msgstr "無法刪除工作。請稍後重試。"
#. js-lingui-id: bmwWKk
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Failed to delete skill"
msgstr ""
@@ -6686,11 +6661,6 @@ msgstr "欄位名稱"
msgid "Field on destination"
msgstr "目的地資料欄位"
#. js-lingui-id: P8JCfj
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
msgid "field permission"
msgstr ""
#. js-lingui-id: RnX5oc
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
msgid "fields"
@@ -6794,6 +6764,9 @@ msgid "Files"
msgstr "檔案"
#. js-lingui-id: o7J4JM
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
#: src/modules/views/components/ViewBarFilterButton.tsx
@@ -7415,11 +7388,6 @@ msgstr "隱藏群組 {groupValue}"
msgid "Hide hidden groups"
msgstr "隱藏隱藏的群組"
#. js-lingui-id: 2ouyMV
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Hide label"
msgstr ""
#. js-lingui-id: i0qMbr
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
@@ -7528,16 +7496,6 @@ msgstr "IAM 憑證"
msgid "IAM credentials configured"
msgstr "已設定 IAM 憑證"
#. js-lingui-id: LlQirF
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
msgid "IAM role"
msgstr ""
#. js-lingui-id: VjDLrJ
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
msgid "IAM role (instance profile)"
msgstr ""
#. js-lingui-id: wwu18a
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Icon"
@@ -9176,7 +9134,6 @@ msgstr "此供應商的模型。切換以啟用或停用。"
#. js-lingui-id: hty0d5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Monday"
msgstr "星期一"
@@ -9227,7 +9184,6 @@ msgstr ""
#. js-lingui-id: 2FYpfJ
#: src/pages/settings/ai/SettingsAI.tsx
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "More"
msgstr "更多"
@@ -9610,7 +9566,7 @@ msgstr "新記錄"
#. js-lingui-id: gWnSyg
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/SettingsSkillForm.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "New Skill"
msgstr ""
@@ -9751,11 +9707,6 @@ msgstr "沒有主體"
msgid "No calling code"
msgstr "不含國碼"
#. js-lingui-id: d14J3J
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
msgid "No chat"
msgstr ""
#. js-lingui-id: wgUPZ1
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
msgid "No comment"
@@ -10054,12 +10005,6 @@ msgstr "尚未為個別對象設定權限。"
msgid "No record is required to trigger this workflow"
msgstr "不需要記錄即可觸發此工作流程"
#. js-lingui-id: aqUuQE
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "No record selected"
msgstr ""
#. js-lingui-id: X8wJTR
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
msgid "No records"
@@ -10590,7 +10535,6 @@ msgstr "打開Outlook"
#. js-lingui-id: bY2Xkv
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
msgid "Open side panel"
msgstr "開啟側邊面板"
@@ -10688,8 +10632,6 @@ msgstr "整理"
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Other"
msgstr "其他"
@@ -11064,12 +11006,6 @@ msgstr "餅圖"
msgid "Pink"
msgstr "粉紅色"
#. js-lingui-id: kNiQp6
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
msgid "Pinned"
msgstr ""
#. js-lingui-id: hx1ePY
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
@@ -11616,12 +11552,6 @@ msgstr "記錄層級"
msgid "Records"
msgstr "紀錄"
#. js-lingui-id: J+Qyf2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
msgid "Records selected"
msgstr ""
#. js-lingui-id: wRTiSD
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
msgid "Red"
@@ -11914,11 +11844,6 @@ msgstr "重設"
msgid "Reset 2FA"
msgstr "重置 2FA"
#. js-lingui-id: YdI8A2
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
msgid "Reset label to default"
msgstr ""
#. js-lingui-id: 1IWc1n
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
msgid "Reset to"
@@ -11926,7 +11851,6 @@ msgstr "重置為"
#. js-lingui-id: L+rMC9
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
msgid "Reset to default"
msgstr "重置為默認"
@@ -12228,7 +12152,6 @@ msgstr "俄語"
#. js-lingui-id: +5kO8P
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Saturday"
msgstr "星期六"
@@ -12354,7 +12277,7 @@ msgid "Search a role..."
msgstr "搜尋角色..."
#. js-lingui-id: lJNEce
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Search a skill..."
msgstr ""
@@ -13238,12 +13161,12 @@ msgid "Skill"
msgstr ""
#. js-lingui-id: h4t38o
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill activated"
msgstr ""
#. js-lingui-id: /IoK74
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
msgid "Skill deleted"
msgstr ""
@@ -13260,7 +13183,6 @@ msgstr ""
#. js-lingui-id: PCSkw2
#: src/pages/settings/ai/SettingsAI.tsx
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Skills"
msgstr ""
@@ -13406,10 +13328,10 @@ msgstr "排序"
msgid "Source"
msgstr "來源"
#. js-lingui-id: xqlr9R
#. js-lingui-id: IEtmGM
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "Spaces and comma"
msgstr ""
msgid "Spaces and comma - {spacesAndCommaExample}"
msgstr "空格和逗號 - {spacesAndCommaExample}"
#. js-lingui-id: 65A04M
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
@@ -13715,7 +13637,6 @@ msgstr "總和"
#. js-lingui-id: DBC3t5
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "Sunday"
msgstr "星期日"
@@ -13864,24 +13785,43 @@ msgstr "系統關聯"
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
msgid "System settings"
msgstr "系統設置"
#. js-lingui-id: E3AMmw
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
msgid "System settings - {systemDateFormatLabel}"
msgstr "系統設置 - {systemDateFormatLabel}"
#. js-lingui-id: uKM6SP
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
msgid "System Settings - {systemNumberFormatLabel}"
msgstr "系統設置 - {systemNumberFormatLabel}"
#. js-lingui-id: 0ZgB1e
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
msgid "System Settings - {systemTimeFormatLabel}"
msgstr "系統設置 - {systemTimeFormatLabel}"
#. js-lingui-id: e89dEj
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Monday"
msgstr "系統設置 - 星期一"
#. js-lingui-id: o+Kvng
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Saturday"
msgstr "系統設置 - 星期六"
#. js-lingui-id: gluMQd
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
msgid "System settings - Sunday"
msgstr "系統設置 - 星期日"
#. js-lingui-id: HuA3RU
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
msgid "Tab"
@@ -14932,13 +14872,6 @@ msgstr "未列出"
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
msgstr "解鎖企業功能,例如 SSO、資料列層級安全性與審計日誌。"
#. js-lingui-id: Te2H8x
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
msgid "Unnamed API Key"
msgstr ""
#. js-lingui-id: eQMhFX
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
msgid "unordered"
@@ -15208,11 +15141,6 @@ msgstr "使用 authenticator 應用和瀏覽器擴充功能,如 1Password、Au
msgid "Use best models only"
msgstr "僅使用最佳模型"
#. js-lingui-id: cVOIgV
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
msgid "Use filter to see existing tools or create your own"
msgstr ""
#. js-lingui-id: oTTQsc
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
@@ -1,28 +1,67 @@
import { AIChatBanner } from '@/ai/components/AIChatBanner';
import { useEndSubscriptionTrialPeriod } from '@/settings/billing/hooks/useEndSubscriptionTrialPeriod';
import { useRedirect } from '@/domain-manager/hooks/useRedirect';
import { usePermissionFlagMap } from '@/settings/roles/hooks/usePermissionFlagMap';
import { useSubscriptionStatus } from '@/workspace/hooks/useSubscriptionStatus';
import { t } from '@lingui/core/macro';
import { useState } from 'react';
import { SettingsPath } from 'twenty-shared/types';
import { getSettingsPath, isDefined } from 'twenty-shared/utils';
import { IconSparkles } from 'twenty-ui/display';
import { useQuery } from '@apollo/client/react';
import {
PermissionFlagType,
SubscriptionStatus,
BillingPortalSessionDocument,
} from '~/generated-metadata/graphql';
import { useNavigateSettings } from '~/hooks/useNavigateSettings';
export const AIChatCreditsExhaustedMessage = () => {
const navigateSettings = useNavigateSettings();
const { redirect } = useRedirect();
const subscriptionStatus = useSubscriptionStatus();
const { endTrialPeriod, isLoading: isEndingTrial } =
useEndSubscriptionTrialPeriod();
const [isProcessing, setIsProcessing] = useState(false);
const isTrialing = subscriptionStatus === SubscriptionStatus.Trialing;
const { [PermissionFlagType.WORKSPACE]: hasPermissionToManageBilling } =
usePermissionFlagMap();
const handleUpgradeClick = () => {
navigateSettings(SettingsPath.Billing);
const { data: billingPortalData, loading: isBillingPortalLoading } = useQuery(
BillingPortalSessionDocument,
{
variables: {
returnUrlPath: getSettingsPath(SettingsPath.Billing),
},
},
);
const openBillingPortal = () => {
if (
isDefined(billingPortalData) &&
isDefined(billingPortalData.billingPortalSession.url)
) {
redirect(billingPortalData.billingPortalSession.url);
}
};
const handleUpgradeClick = async () => {
if (!isTrialing) {
openBillingPortal();
return;
}
setIsProcessing(true);
const result = await endTrialPeriod();
setIsProcessing(false);
if (!result.success) {
openBillingPortal();
}
};
const isLoading = isEndingTrial || isBillingPortalLoading || isProcessing;
const message = hasPermissionToManageBilling
? isTrialing
? t`Free trial credits exhausted. Subscribe now to continue using AI features.`
@@ -40,6 +79,8 @@ export const AIChatCreditsExhaustedMessage = () => {
buttonOnClick={
hasPermissionToManageBilling ? handleUpgradeClick : undefined
}
isButtonDisabled={isLoading}
isButtonLoading={isLoading}
/>
);
};
@@ -1,5 +1,6 @@
import { styled } from '@linaria/react';
import { EditorContent } from '@tiptap/react';
import { LightButton } from 'twenty-ui/input';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { AIChatEmptyState } from '@/ai/components/AIChatEmptyState';
@@ -11,17 +12,10 @@ import { AIChatEditorFocusEffect } from '@/ai/components/internal/AIChatEditorFo
import { AIChatSkeletonLoader } from '@/ai/components/internal/AIChatSkeletonLoader';
import { SendMessageButton } from '@/ai/components/internal/SendMessageButton';
import { useAIChatEditor } from '@/ai/hooks/useAIChatEditor';
import { useAgentChatModelId } from '@/ai/hooks/useAgentChatModelId';
import { useWorkspaceAiModelAvailability } from '@/ai/hooks/useWorkspaceAiModelAvailability';
import { agentChatUserSelectedModelState } from '@/ai/states/agentChatUserSelectedModelState';
import { useAiModelLabel } from '@/ai/hooks/useAiModelOptions';
import { currentWorkspaceState } from '@/auth/states/currentWorkspaceState';
import { aiModelsState } from '@/client-config/states/aiModelsState';
import { getModelIcon } from '@/settings/admin-panel/ai/utils/getModelIcon';
import { Select } from '@/ui/input/components/Select';
import { useIsMobile } from '@/ui/utilities/responsive/hooks/useIsMobile';
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { t } from '@lingui/core/macro';
const StyledInputArea = styled.div<{ isMobile: boolean }>`
align-items: flex-end;
@@ -108,48 +102,24 @@ const StyledRightButtonsContainer = styled.div`
gap: ${themeCssVariables.spacing[1]};
`;
const StyledReadOnlyModelButtonContainer = styled.div`
> * {
cursor: default;
&:hover,
&:active {
background: transparent;
}
}
`;
export const AIChatEditorSection = () => {
const isMobile = useIsMobile();
const currentWorkspace = useAtomStateValue(currentWorkspaceState);
const aiModels = useAtomStateValue(aiModelsState);
const { enabledModels } = useWorkspaceAiModelAvailability();
const setAgentChatUserSelectedModel = useSetAtomState(
agentChatUserSelectedModelState,
);
const { selectedModelId } = useAgentChatModelId();
const smartModelLabel = useAiModelLabel(currentWorkspace?.smartModel, false);
const { editor, handleSendAndClear } = useAIChatEditor();
const workspaceSmartModel = aiModels.find(
(model) => model.modelId === currentWorkspace?.smartModel,
);
const resolvedDefaultModelId = enabledModels.find(
(model) =>
model.label === workspaceSmartModel?.label &&
model.providerName === workspaceSmartModel?.providerName,
)?.modelId;
const defaultPinnedOption = workspaceSmartModel
? {
value: null as string | null,
label: workspaceSmartModel.label,
Icon: getModelIcon(
workspaceSmartModel.modelFamily,
workspaceSmartModel.providerName,
),
contextualText: t`default`,
}
: undefined;
const smartModelOptions = enabledModels
.filter((model) => model.modelId !== resolvedDefaultModelId)
.map((model) => ({
value: model.modelId as string | null,
label: model.label,
Icon: getModelIcon(model.modelFamily, model.providerName),
}));
return (
<>
<AIChatEditorFocusEffect editor={editor} />
@@ -169,17 +139,9 @@ export const AIChatEditorSection = () => {
<AIChatContextUsageButton />
</StyledLeftButtonsContainer>
<StyledRightButtonsContainer>
<Select
dropdownId="ai-chat-smart-model-select"
value={selectedModelId}
onChange={setAgentChatUserSelectedModel}
options={smartModelOptions}
pinnedOption={defaultPinnedOption}
selectSizeVariant="small"
showContextualTextInControl={false}
withSearchInput
dropdownOffset={{ x: 0, y: 8 }}
/>
<StyledReadOnlyModelButtonContainer>
<LightButton accent="tertiary" title={smartModelLabel} />
</StyledReadOnlyModelButtonContainer>
<SendMessageButton onSend={handleSendAndClear} />
</StyledRightButtonsContainer>
</StyledButtonsContainer>
@@ -1,4 +1,4 @@
import { AIChatErrorRenderer } from '@/ai/components/AIChatErrorRenderer';
import { AIChatStandaloneError } from '@/ai/components/AIChatStandaloneError';
import { AgentMessageRole } from '@/ai/constants/AgentMessageRole';
import { agentChatErrorState } from '@/ai/states/agentChatErrorState';
import { agentChatIsStreamingState } from '@/ai/states/agentChatIsStreamingState';
@@ -7,12 +7,6 @@ import { agentChatMessageIdsComponentSelector } from '@/ai/states/agentChatMessa
import { useAtomComponentFamilySelectorValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentFamilySelectorValue';
import { useAtomComponentSelectorValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentSelectorValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { styled } from '@linaria/react';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledErrorWrapper = styled.div`
padding-top: ${themeCssVariables.spacing[3]};
`;
export const AIChatErrorUnderMessageList = () => {
const agentChatError = useAtomStateValue(agentChatErrorState);
@@ -37,9 +31,5 @@ export const AIChatErrorUnderMessageList = () => {
return null;
}
return (
<StyledErrorWrapper>
<AIChatErrorRenderer error={agentChatError} />
</StyledErrorWrapper>
);
return <AIChatStandaloneError />;
};
@@ -6,7 +6,6 @@ import { useEnsureAgentChatThreadIdForSend } from '@/ai/hooks/useEnsureAgentChat
import { agentChatErrorState } from '@/ai/states/agentChatErrorState';
import { agentChatIsLoadingState } from '@/ai/states/agentChatIsLoadingState';
import { agentChatIsStreamingState } from '@/ai/states/agentChatIsStreamingState';
import { normalizeAiSdkError } from '@/ai/utils/normalizeAiSdkError';
import { agentChatMessagesComponentFamilyState } from '@/ai/states/agentChatMessagesComponentFamilyState';
import { agentChatMessagesLoadingState } from '@/ai/states/agentChatMessagesLoadingState';
import { agentChatThreadsLoadingState } from '@/ai/states/agentChatThreadsLoadingState';
@@ -120,7 +119,7 @@ export const AgentChatAiSdkStreamEffect = () => {
const setAgentChatError = useSetAtomState(agentChatErrorState);
useEffect(() => {
setAgentChatError(normalizeAiSdkError(chatState.error));
setAgentChatError(chatState.error);
}, [chatState.error, setAgentChatError]);
const setAgentChatIsStreaming = useSetAtomState(agentChatIsStreamingState);
@@ -1,6 +1,4 @@
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { AIChatSkeletonLoader } from '@/ai/components/internal/AIChatSkeletonLoader';
import { NavigationDrawerAIChatThreadDateSection } from '@/ai/components/NavigationDrawerAIChatThreadDateSection';
@@ -12,28 +10,16 @@ import { DATE_GROUP_KEYS } from '@/ai/utils/dateGroupKeys';
import { getDateGroupTitle } from '@/ai/utils/getDateGroupTitle';
import { groupThreadsByDate } from '@/ai/utils/groupThreadsByDate';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { themeCssVariables } from 'twenty-ui/theme-constants';
const StyledContainer = styled.div`
display: flex;
flex-direction: column;
height: 100%;
min-height: 0;
`;
const StyledThreadList = styled.div`
display: flex;
flex-direction: column;
padding: ${themeCssVariables.spacing[2]} ${themeCssVariables.spacing[0]};
width: calc(100% - ${themeCssVariables.spacing[2]});
`;
const StyledEmptyState = styled.div`
align-items: center;
color: ${themeCssVariables.font.color.light};
const StyledScrollableList = styled.div`
display: flex;
flex: 1;
font-size: ${themeCssVariables.font.size.md};
justify-content: center;
flex-direction: column;
min-height: 0;
overflow-y: auto;
padding: ${themeCssVariables.spacing[2]} ${themeCssVariables.spacing[0]};
width: calc(100% - ${themeCssVariables.spacing[2]});
`;
const StyledFetchMoreTrigger = styled.div`
@@ -42,9 +28,7 @@ const StyledFetchMoreTrigger = styled.div`
width: 100%;
`;
export const NavigationDrawerAIChatContent = () => {
const { t } = useLingui();
export const NavigationDrawerAIChatThreadsList = () => {
const currentAIChatThread = useAtomStateValue(currentAIChatThreadState);
const { handleThreadClick } = useAIChatThreadClick({
resetNavigationStack: true,
@@ -55,40 +39,26 @@ export const NavigationDrawerAIChatContent = () => {
const groupedThreads = groupThreadsByDate(threads);
if (loading && threads.length === 0) {
return (
<StyledContainer>
<AIChatSkeletonLoader />
</StyledContainer>
);
}
if (threads.length === 0) {
return (
<StyledContainer>
<StyledEmptyState>{t`No chat`}</StyledEmptyState>
</StyledContainer>
);
return <AIChatSkeletonLoader />;
}
return (
<StyledContainer>
<StyledThreadList>
{DATE_GROUP_KEYS.map((key: DateGroupKey) => {
const threadsInGroup = groupedThreads[key];
if (threadsInGroup.length === 0) return null;
<StyledScrollableList>
{DATE_GROUP_KEYS.map((key: DateGroupKey) => {
const threadsInGroup = groupedThreads[key];
if (threadsInGroup.length === 0) return null;
return (
<NavigationDrawerAIChatThreadDateSection
key={key}
title={getDateGroupTitle(key)}
threads={threadsInGroup}
currentThreadId={currentAIChatThread}
onThreadClick={handleThreadClick}
/>
);
})}
{hasNextPage ? <StyledFetchMoreTrigger ref={fetchMoreRef} /> : null}
</StyledThreadList>
</StyledContainer>
return (
<NavigationDrawerAIChatThreadDateSection
key={key}
title={getDateGroupTitle(key)}
threads={threadsInGroup}
currentThreadId={currentAIChatThread}
onThreadClick={handleThreadClick}
/>
);
})}
{hasNextPage ? <StyledFetchMoreTrigger ref={fetchMoreRef} /> : null}
</StyledScrollableList>
);
};
@@ -0,0 +1 @@
export const DEFAULT_FAST_MODEL = 'default-fast-model' as const;

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