Compare commits
63
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6bdf5f9781 | ||
|
|
81fc960712 | ||
|
|
cb44b22e15 | ||
|
|
9498a60f74 | ||
|
|
191a277ddf | ||
|
|
7f1814805d | ||
|
|
34b81adce8 | ||
|
|
cd2e08b912 | ||
|
|
fb21f3ccf5 | ||
|
|
281bb6d783 | ||
|
|
c96c034908 | ||
|
|
5efe69f8d3 | ||
|
|
c2b058a6a7 | ||
|
|
22c9693ce5 | ||
|
|
50ea560e57 | ||
|
|
56056b885d | ||
|
|
db9da3194f | ||
|
|
68f5e70ade | ||
|
|
08077476f3 | ||
|
|
6f0ac88e20 | ||
|
|
17424320e3 | ||
|
|
6360fb3bce | ||
|
|
da1b1f1cbc | ||
|
|
31718d163c | ||
|
|
f47608de07 | ||
|
|
695518a15e | ||
|
|
34ab72c460 | ||
|
|
9eba54134d | ||
|
|
34832815e6 | ||
|
|
7a341c6475 | ||
|
|
1c297e5ace | ||
|
|
c3a3cf9c67 | ||
|
|
8ef99671e2 | ||
|
|
e63a23ea00 | ||
|
|
39b9ae6a76 | ||
|
|
afeef8e04a | ||
|
|
c7f6036a47 | ||
|
|
ec5ab2b84a | ||
|
|
b171a23216 | ||
|
|
f771b13a20 | ||
|
|
92635b960b | ||
|
|
2e015ee68d | ||
|
|
82611de9b6 | ||
|
|
36c7c99e34 | ||
|
|
160a80cbcb | ||
|
|
052aecccc7 | ||
|
|
b651a74b1f | ||
|
|
29979f535d | ||
|
|
b1e449d764 | ||
|
|
c28e637ea7 | ||
|
|
b732b2efd4 | ||
|
|
3c5796bdb0 | ||
|
|
cfefe9273b | ||
|
|
d126d54bbc | ||
|
|
5041b3e14b | ||
|
|
1e2b31b040 | ||
|
|
340a01567a | ||
|
|
4985270e69 | ||
|
|
b87762b1c2 | ||
|
|
578d990b9c | ||
|
|
dfe9cb4346 | ||
|
|
91374262f2 | ||
|
|
7335d352a9 |
@@ -36,6 +36,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -50,10 +53,16 @@ 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"
|
||||
@@ -143,7 +152,6 @@ 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: |
|
||||
@@ -296,7 +304,6 @@ 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: |
|
||||
@@ -395,6 +402,12 @@ 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
|
||||
|
||||
@@ -37,6 +37,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -51,8 +54,13 @@ 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
|
||||
@@ -66,13 +74,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 twenty-sdk twenty-client-sdk create-twenty-app --releaseVersion=$CI_VERSION
|
||||
npx nx run-many -t set-local-version -p $PUBLISHABLE_PACKAGES --releaseVersion=$CI_VERSION
|
||||
|
||||
- name: Build packages
|
||||
run: |
|
||||
npx nx build twenty-sdk
|
||||
npx nx build twenty-client-sdk
|
||||
npx nx build create-twenty-app
|
||||
for pkg in $PUBLISHABLE_PACKAGES; do
|
||||
npx nx build $pkg
|
||||
done
|
||||
|
||||
- name: Install and start Verdaccio
|
||||
run: |
|
||||
@@ -89,11 +97,13 @@ jobs:
|
||||
|
||||
- name: Publish packages to local registry
|
||||
run: |
|
||||
npm set //localhost:4873/:_authToken "ci-auth-token"
|
||||
yarn config set npmRegistryServer http://localhost:4873
|
||||
yarn config set unsafeHttpWhitelist --json '["localhost"]'
|
||||
yarn config set npmAuthToken ci-auth-token
|
||||
|
||||
for pkg in twenty-sdk twenty-client-sdk create-twenty-app; do
|
||||
for pkg in $PUBLISHABLE_PACKAGES; do
|
||||
cd packages/$pkg
|
||||
npm publish --registry http://localhost:4873 --tag ci
|
||||
yarn npm publish --tag ci
|
||||
cd ../..
|
||||
done
|
||||
|
||||
|
||||
@@ -26,6 +26,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -40,6 +43,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
|
||||
@@ -57,6 +57,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -71,6 +74,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
|
||||
@@ -84,6 +84,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -98,6 +101,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
@@ -122,7 +128,6 @@ 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=$?
|
||||
@@ -227,6 +232,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -241,10 +249,16 @@ 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,6 +27,11 @@ 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..."
|
||||
@@ -97,6 +102,11 @@ 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
|
||||
|
||||
@@ -27,6 +27,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
|
||||
@@ -30,6 +30,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -44,6 +47,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
|
||||
@@ -17,6 +17,12 @@ 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
File diff suppressed because one or more lines are too long
Vendored
-942
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,4 +6,4 @@ enableInlineHunks: true
|
||||
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.9.2.cjs
|
||||
yarnPath: .yarn/releases/yarn-4.13.0.cjs
|
||||
|
||||
+2
-1
@@ -175,7 +175,7 @@
|
||||
},
|
||||
"license": "AGPL-3.0",
|
||||
"name": "twenty",
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"packageManager": "yarn@4.13.0",
|
||||
"resolutions": {
|
||||
"graphql": "16.8.1",
|
||||
"type-fest": "4.10.1",
|
||||
@@ -203,6 +203,7 @@
|
||||
"packages/twenty-utils",
|
||||
"packages/twenty-zapier",
|
||||
"packages/twenty-website",
|
||||
"packages/twenty-website-new",
|
||||
"packages/twenty-docs",
|
||||
"packages/twenty-e2e-testing",
|
||||
"packages/twenty-shared",
|
||||
|
||||
@@ -41,7 +41,7 @@ cd my-twenty-app
|
||||
|
||||
# Or do it manually:
|
||||
yarn twenty server start # Start local Twenty server
|
||||
yarn twenty remote add --local # Authenticate via OAuth
|
||||
yarn twenty remote add http://localhost:2020 --as 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,18 +122,10 @@ 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 --local` to authenticate with your Twenty workspace via OAuth.
|
||||
- Use `yarn twenty remote add <url>` 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'`.
|
||||
@@ -177,7 +169,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 --local`.
|
||||
- Auth not working: make sure you're logged in to Twenty in the browser first, then run `yarn twenty remote add <url>`.
|
||||
- Types not generated: ensure `yarn twenty dev` is running — it auto-generates the typed client.
|
||||
|
||||
## Contributing
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-twenty-app",
|
||||
"version": "0.8.0-canary.2",
|
||||
"version": "0.8.0-canary.5",
|
||||
"description": "Command-line interface to create Twenty application",
|
||||
"main": "dist/cli.cjs",
|
||||
"bin": "dist/cli.cjs",
|
||||
@@ -36,6 +36,7 @@
|
||||
"lodash.camelcase": "^4.3.0",
|
||||
"lodash.kebabcase": "^4.1.1",
|
||||
"lodash.startcase": "^4.4.0",
|
||||
"twenty-sdk": "workspace:*",
|
||||
"uuid": "^13.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -45,7 +46,6 @@
|
||||
"@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",
|
||||
|
||||
@@ -31,10 +31,6 @@ 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 (
|
||||
@@ -46,7 +42,6 @@ const program = new Command(packageJson.name)
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
port?: string;
|
||||
},
|
||||
) => {
|
||||
const modeFlags = [options?.exhaustive, options?.minimal].filter(Boolean);
|
||||
@@ -76,8 +71,6 @@ 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,
|
||||
@@ -85,7 +78,6 @@ 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,7 +29,6 @@ type CreateAppOptions = {
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
port?: number;
|
||||
};
|
||||
|
||||
export class CreateAppCommand {
|
||||
@@ -60,17 +59,22 @@ export class CreateAppCommand {
|
||||
|
||||
await tryGitInit(appDirectory);
|
||||
|
||||
let localResult: LocalInstanceResult = { running: false };
|
||||
let serverResult: ServerStartResult | undefined;
|
||||
|
||||
if (!options.skipLocalInstance) {
|
||||
localResult = await setupLocalInstance(appDirectory, options.port);
|
||||
const startResult = await serverStart({
|
||||
onProgress: (message: string) => console.log(chalk.gray(message)),
|
||||
});
|
||||
|
||||
if (localResult.running && localResult.serverUrl) {
|
||||
await this.connectToLocal(appDirectory, localResult.serverUrl);
|
||||
if (startResult.success) {
|
||||
serverResult = startResult.data;
|
||||
await this.connectToLocal(serverResult.url);
|
||||
} else {
|
||||
console.log(chalk.yellow(`\n${startResult.error.message}`));
|
||||
}
|
||||
}
|
||||
|
||||
this.logSuccess(appDirectory, localResult);
|
||||
this.logSuccess(appDirectory, serverResult);
|
||||
} catch (error) {
|
||||
console.error(
|
||||
chalk.red('\nCreate application failed:'),
|
||||
@@ -197,15 +201,20 @@ export class CreateAppCommand {
|
||||
);
|
||||
}
|
||||
|
||||
private async connectToLocal(
|
||||
appDirectory: string,
|
||||
serverUrl: string,
|
||||
): Promise<void> {
|
||||
private async connectToLocal(serverUrl: string): Promise<void> {
|
||||
try {
|
||||
execSync(`yarn twenty remote add ${serverUrl} --as local`, {
|
||||
cwd: appDirectory,
|
||||
stdio: 'inherit',
|
||||
const result = await authLoginOAuth({
|
||||
apiUrl: serverUrl,
|
||||
remote: 'local',
|
||||
});
|
||||
|
||||
if (!result.success) {
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
'Authentication skipped. Run `yarn twenty remote add --local` manually.',
|
||||
),
|
||||
);
|
||||
}
|
||||
} catch {
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
@@ -217,14 +226,14 @@ export class CreateAppCommand {
|
||||
|
||||
private logSuccess(
|
||||
appDirectory: string,
|
||||
localResult: LocalInstanceResult,
|
||||
serverResult?: ServerStartResult,
|
||||
): void {
|
||||
const dirName = basename(appDirectory);
|
||||
|
||||
console.log(chalk.blue('\nApplication created. Next steps:'));
|
||||
console.log(chalk.gray(`- cd ${dirName}`));
|
||||
|
||||
if (!localResult.running) {
|
||||
if (!serverResult) {
|
||||
console.log(
|
||||
chalk.gray(
|
||||
'- yarn twenty remote add --local # Authenticate with Twenty',
|
||||
|
||||
@@ -1,106 +0,0 @@
|
||||
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 --local
|
||||
yarn twenty remote add http://localhost:2020 --as 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 --local # Authenticate with Twenty
|
||||
yarn twenty remote add http://localhost:2020 --as 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 --local
|
||||
yarn twenty remote add http://localhost:2020 --as 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 --local # Authenticate with Twenty
|
||||
yarn twenty remote add http://localhost:2020 --as 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 --local
|
||||
yarn twenty remote add http://localhost:2020 --as 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 --local # Authenticate with Twenty
|
||||
yarn twenty remote add http://localhost:2020 --as 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,6 +1,6 @@
|
||||
{
|
||||
"name": "twenty-client-sdk",
|
||||
"version": "0.7.0-canary.0",
|
||||
"version": "0.8.0-canary.5",
|
||||
"sideEffects": false,
|
||||
"license": "AGPL-3.0",
|
||||
"scripts": {
|
||||
|
||||
@@ -343,6 +343,7 @@ type Field {
|
||||
defaultValue: JSON
|
||||
options: JSON
|
||||
settings: JSON
|
||||
objectMetadataId: UUID!
|
||||
isLabelSyncedWithName: Boolean
|
||||
morphId: UUID
|
||||
createdAt: DateTime!
|
||||
@@ -540,6 +541,7 @@ input FieldFilter {
|
||||
isActive: BooleanFieldComparison
|
||||
isSystem: BooleanFieldComparison
|
||||
isUIReadOnly: BooleanFieldComparison
|
||||
objectMetadataId: UUIDFilterComparison
|
||||
}
|
||||
|
||||
input IndexFilter {
|
||||
@@ -778,8 +780,7 @@ type Workspace {
|
||||
viewGroups: [ViewGroup!]
|
||||
viewSorts: [ViewSort!]
|
||||
metadataVersion: Float!
|
||||
databaseUrl: String!
|
||||
databaseSchema: String!
|
||||
databaseSchema: String
|
||||
subdomain: String!
|
||||
customDomain: String
|
||||
isGoogleAuthEnabled: Boolean!
|
||||
@@ -1747,6 +1748,7 @@ enum FeatureFlagKey {
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED
|
||||
IS_GRAPHQL_QUERY_TIMING_ENABLED
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED
|
||||
IS_DATASOURCE_MIGRATED
|
||||
}
|
||||
|
||||
type ClientConfig {
|
||||
@@ -2273,6 +2275,11 @@ type FieldConnection {
|
||||
edges: [FieldEdge!]!
|
||||
}
|
||||
|
||||
type LogicFunctionLogs {
|
||||
"""Execution Logs"""
|
||||
logs: String!
|
||||
}
|
||||
|
||||
type DeleteTwoFactorAuthenticationMethod {
|
||||
"""Boolean that confirms query was dispatched"""
|
||||
success: Boolean!
|
||||
@@ -2593,11 +2600,6 @@ type UsageAnalytics {
|
||||
userDailyUsage: UsageUserDaily
|
||||
}
|
||||
|
||||
type LogicFunctionLogs {
|
||||
"""Execution Logs"""
|
||||
logs: String!
|
||||
}
|
||||
|
||||
type FrontComponent {
|
||||
id: UUID!
|
||||
name: String!
|
||||
@@ -3090,6 +3092,7 @@ enum AllMetadataName {
|
||||
navigationMenuItem
|
||||
permissionFlag
|
||||
objectPermission
|
||||
fieldPermission
|
||||
frontComponent
|
||||
webhook
|
||||
}
|
||||
@@ -3501,6 +3504,7 @@ 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!
|
||||
@@ -4272,8 +4276,8 @@ input CreateFieldInput {
|
||||
defaultValue: JSON
|
||||
options: JSON
|
||||
settings: JSON
|
||||
isLabelSyncedWithName: Boolean
|
||||
objectMetadataId: UUID!
|
||||
isLabelSyncedWithName: Boolean
|
||||
isRemoteCreation: Boolean
|
||||
relationCreationPayload: JSON
|
||||
morphRelationsCreationPayload: [JSON!]
|
||||
@@ -4301,6 +4305,7 @@ input UpdateFieldInput {
|
||||
defaultValue: JSON
|
||||
options: JSON
|
||||
settings: JSON
|
||||
objectMetadataId: UUID
|
||||
isLabelSyncedWithName: Boolean
|
||||
morphRelationsUpdatePayload: [JSON!]
|
||||
}
|
||||
|
||||
@@ -296,6 +296,7 @@ export interface Field {
|
||||
defaultValue?: Scalars['JSON']
|
||||
options?: Scalars['JSON']
|
||||
settings?: Scalars['JSON']
|
||||
objectMetadataId: Scalars['UUID']
|
||||
isLabelSyncedWithName?: Scalars['Boolean']
|
||||
morphId?: Scalars['UUID']
|
||||
createdAt: Scalars['DateTime']
|
||||
@@ -564,8 +565,7 @@ export interface Workspace {
|
||||
viewGroups?: ViewGroup[]
|
||||
viewSorts?: ViewSort[]
|
||||
metadataVersion: Scalars['Float']
|
||||
databaseUrl: Scalars['String']
|
||||
databaseSchema: 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'
|
||||
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 interface ClientConfig {
|
||||
appVersion?: Scalars['String']
|
||||
@@ -1937,6 +1937,12 @@ 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']
|
||||
@@ -2298,12 +2304,6 @@ 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' | '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' | 'fieldPermission' | 'frontComponent' | 'webhook'
|
||||
|
||||
export interface MinimalObjectMetadata {
|
||||
id: Scalars['UUID']
|
||||
@@ -2954,6 +2954,7 @@ export interface Mutation {
|
||||
createViewGroup: ViewGroup
|
||||
createManyViewGroups: ViewGroup[]
|
||||
updateViewGroup: ViewGroup
|
||||
updateManyViewGroups: ViewGroup[]
|
||||
deleteViewGroup: ViewGroup
|
||||
destroyViewGroup: ViewGroup
|
||||
updateMessageFolder: MessageFolder
|
||||
@@ -3360,6 +3361,7 @@ export interface FieldGenqlSelection{
|
||||
defaultValue?: boolean | number
|
||||
options?: boolean | number
|
||||
settings?: boolean | number
|
||||
objectMetadataId?: boolean | number
|
||||
isLabelSyncedWithName?: boolean | number
|
||||
morphId?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
@@ -3476,7 +3478,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)}
|
||||
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 IndexFilter {and?: (IndexFilter[] | null),or?: (IndexFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null)}
|
||||
|
||||
@@ -3653,7 +3655,6 @@ export interface WorkspaceGenqlSelection{
|
||||
viewGroups?: ViewGroupGenqlSelection
|
||||
viewSorts?: ViewSortGenqlSelection
|
||||
metadataVersion?: boolean | number
|
||||
databaseUrl?: boolean | number
|
||||
databaseSchema?: boolean | number
|
||||
subdomain?: boolean | number
|
||||
customDomain?: boolean | number
|
||||
@@ -5096,6 +5097,13 @@ 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
|
||||
@@ -5501,13 +5509,6 @@ 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
|
||||
@@ -6207,6 +6208,7 @@ 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} })
|
||||
@@ -6527,7 +6529,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),isLabelSyncedWithName?: (Scalars['Boolean'] | null),objectMetadataId: Scalars['UUID'],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),objectMetadataId: Scalars['UUID'],isLabelSyncedWithName?: (Scalars['Boolean'] | null),isRemoteCreation?: (Scalars['Boolean'] | null),relationCreationPayload?: (Scalars['JSON'] | null),morphRelationsCreationPayload?: (Scalars['JSON'][] | null)}
|
||||
|
||||
export interface UpdateOneFieldMetadataInput {
|
||||
/** The id of the record to update */
|
||||
@@ -6535,7 +6537,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),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),objectMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),morphRelationsUpdatePayload?: (Scalars['JSON'][] | null)}
|
||||
|
||||
export interface DeleteOneFieldInput {
|
||||
/** The id of the field to delete. */
|
||||
@@ -8047,6 +8049,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 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"')
|
||||
@@ -8431,14 +8441,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 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"')
|
||||
@@ -9155,7 +9157,8 @@ 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_RECORD_TABLE_WIDGET_ENABLED: 'IS_RECORD_TABLE_WIDGET_ENABLED' as const,
|
||||
IS_DATASOURCE_MIGRATED: 'IS_DATASOURCE_MIGRATED' as const
|
||||
}
|
||||
|
||||
export const enumConfigSource = {
|
||||
@@ -9425,6 +9428,7 @@ 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,6 +777,9 @@ export default {
|
||||
"settings": [
|
||||
15
|
||||
],
|
||||
"objectMetadataId": [
|
||||
3
|
||||
],
|
||||
"isLabelSyncedWithName": [
|
||||
6
|
||||
],
|
||||
@@ -1164,6 +1167,9 @@ export default {
|
||||
"isUIReadOnly": [
|
||||
43
|
||||
],
|
||||
"objectMetadataId": [
|
||||
42
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
@@ -1631,9 +1637,6 @@ export default {
|
||||
"metadataVersion": [
|
||||
11
|
||||
],
|
||||
"databaseUrl": [
|
||||
1
|
||||
],
|
||||
"databaseSchema": [
|
||||
1
|
||||
],
|
||||
@@ -4458,6 +4461,14 @@ export default {
|
||||
1
|
||||
]
|
||||
},
|
||||
"LogicFunctionLogs": {
|
||||
"logs": [
|
||||
1
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"DeleteTwoFactorAuthenticationMethod": {
|
||||
"success": [
|
||||
6
|
||||
@@ -4503,10 +4514,10 @@ export default {
|
||||
},
|
||||
"AuthTokenPair": {
|
||||
"accessOrWorkspaceAgnosticToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"refreshToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4514,7 +4525,7 @@ export default {
|
||||
},
|
||||
"AvailableWorkspacesAndAccessTokens": {
|
||||
"tokens": [
|
||||
251
|
||||
252
|
||||
],
|
||||
"availableWorkspaces": [
|
||||
224
|
||||
@@ -4566,10 +4577,10 @@ export default {
|
||||
},
|
||||
"SignUp": {
|
||||
"loginToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"workspace": [
|
||||
256
|
||||
257
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4577,7 +4588,7 @@ export default {
|
||||
},
|
||||
"TransientToken": {
|
||||
"transientToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4599,7 +4610,7 @@ export default {
|
||||
},
|
||||
"VerifyEmailAndGetLoginToken": {
|
||||
"loginToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"workspaceUrls": [
|
||||
157
|
||||
@@ -4618,7 +4629,7 @@ export default {
|
||||
},
|
||||
"AuthTokens": {
|
||||
"tokens": [
|
||||
251
|
||||
252
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4626,7 +4637,7 @@ export default {
|
||||
},
|
||||
"LoginToken": {
|
||||
"loginToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4656,10 +4667,10 @@ export default {
|
||||
},
|
||||
"Impersonate": {
|
||||
"loginToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"workspace": [
|
||||
256
|
||||
257
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4689,10 +4700,10 @@ export default {
|
||||
},
|
||||
"ApplicationTokenPair": {
|
||||
"applicationAccessToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"applicationRefreshToken": [
|
||||
250
|
||||
251
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4764,7 +4775,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"fields": [
|
||||
271
|
||||
272
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4861,10 +4872,10 @@ export default {
|
||||
6
|
||||
],
|
||||
"objectPermissions": [
|
||||
275
|
||||
276
|
||||
],
|
||||
"fieldPermissions": [
|
||||
276
|
||||
277
|
||||
],
|
||||
"permissionFlags": [
|
||||
1
|
||||
@@ -4914,19 +4925,19 @@ export default {
|
||||
1
|
||||
],
|
||||
"objects": [
|
||||
272
|
||||
],
|
||||
"fields": [
|
||||
271
|
||||
],
|
||||
"logicFunctions": [
|
||||
273
|
||||
],
|
||||
"frontComponents": [
|
||||
"fields": [
|
||||
272
|
||||
],
|
||||
"logicFunctions": [
|
||||
274
|
||||
],
|
||||
"frontComponents": [
|
||||
275
|
||||
],
|
||||
"defaultRole": [
|
||||
277
|
||||
278
|
||||
],
|
||||
"sourcePackage": [
|
||||
1
|
||||
@@ -4986,13 +4997,13 @@ export default {
|
||||
1
|
||||
],
|
||||
"driver": [
|
||||
282
|
||||
],
|
||||
"status": [
|
||||
283
|
||||
],
|
||||
"status": [
|
||||
284
|
||||
],
|
||||
"verificationRecords": [
|
||||
280
|
||||
281
|
||||
],
|
||||
"verifiedAt": [
|
||||
4
|
||||
@@ -5039,7 +5050,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"location": [
|
||||
285
|
||||
286
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -5067,13 +5078,13 @@ export default {
|
||||
},
|
||||
"ImapSmtpCaldavConnectionParameters": {
|
||||
"IMAP": [
|
||||
287
|
||||
288
|
||||
],
|
||||
"SMTP": [
|
||||
287
|
||||
288
|
||||
],
|
||||
"CALDAV": [
|
||||
287
|
||||
288
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -5093,7 +5104,7 @@ export default {
|
||||
3
|
||||
],
|
||||
"connectionParameters": [
|
||||
288
|
||||
289
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -5157,7 +5168,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"dailyUsage": [
|
||||
293
|
||||
294
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -5165,13 +5176,13 @@ export default {
|
||||
},
|
||||
"UsageAnalytics": {
|
||||
"usageByUser": [
|
||||
292
|
||||
293
|
||||
],
|
||||
"usageByOperationType": [
|
||||
292
|
||||
293
|
||||
],
|
||||
"timeSeries": [
|
||||
293
|
||||
294
|
||||
],
|
||||
"periodStart": [
|
||||
4
|
||||
@@ -5180,15 +5191,7 @@ export default {
|
||||
4
|
||||
],
|
||||
"userDailyUsage": [
|
||||
294
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"LogicFunctionLogs": {
|
||||
"logs": [
|
||||
1
|
||||
295
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -5235,7 +5238,7 @@ export default {
|
||||
6
|
||||
],
|
||||
"applicationTokenPair": [
|
||||
269
|
||||
270
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -6656,7 +6659,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"checkUserExists": [
|
||||
264,
|
||||
265,
|
||||
{
|
||||
"email": [
|
||||
1,
|
||||
@@ -6668,7 +6671,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"checkWorkspaceInviteHashIsValid": [
|
||||
265,
|
||||
266,
|
||||
{
|
||||
"inviteHash": [
|
||||
1,
|
||||
@@ -6686,7 +6689,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"validatePasswordResetToken": [
|
||||
259,
|
||||
260,
|
||||
{
|
||||
"passwordResetToken": [
|
||||
1,
|
||||
@@ -6769,7 +6772,7 @@ export default {
|
||||
220
|
||||
],
|
||||
"getConnectedImapSmtpCaldavAccount": [
|
||||
289,
|
||||
290,
|
||||
{
|
||||
"id": [
|
||||
3,
|
||||
@@ -6778,7 +6781,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"getAutoCompleteAddress": [
|
||||
284,
|
||||
285,
|
||||
{
|
||||
"address": [
|
||||
1,
|
||||
@@ -6797,7 +6800,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"getAddressDetails": [
|
||||
286,
|
||||
287,
|
||||
{
|
||||
"placeId": [
|
||||
1,
|
||||
@@ -6889,19 +6892,19 @@ export default {
|
||||
}
|
||||
],
|
||||
"getPostgresCredentials": [
|
||||
291
|
||||
292
|
||||
],
|
||||
"findManyPublicDomains": [
|
||||
279
|
||||
280
|
||||
],
|
||||
"getEmailingDomains": [
|
||||
281
|
||||
282
|
||||
],
|
||||
"findManyMarketplaceApps": [
|
||||
278
|
||||
279
|
||||
],
|
||||
"findOneMarketplaceApp": [
|
||||
278,
|
||||
279,
|
||||
{
|
||||
"universalIdentifier": [
|
||||
1,
|
||||
@@ -6924,7 +6927,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"getUsageAnalytics": [
|
||||
295,
|
||||
296,
|
||||
{
|
||||
"input": [
|
||||
365
|
||||
@@ -8130,6 +8133,15 @@ export default {
|
||||
]
|
||||
}
|
||||
],
|
||||
"updateManyViewGroups": [
|
||||
56,
|
||||
{
|
||||
"inputs": [
|
||||
450,
|
||||
"[UpdateViewGroupInput!]!"
|
||||
]
|
||||
}
|
||||
],
|
||||
"deleteViewGroup": [
|
||||
56,
|
||||
{
|
||||
@@ -8300,7 +8312,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"getAuthorizationUrlForSSO": [
|
||||
254,
|
||||
255,
|
||||
{
|
||||
"input": [
|
||||
466,
|
||||
@@ -8309,7 +8321,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"getLoginTokenFromCredentials": [
|
||||
263,
|
||||
264,
|
||||
{
|
||||
"email": [
|
||||
1,
|
||||
@@ -8335,7 +8347,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"signIn": [
|
||||
252,
|
||||
253,
|
||||
{
|
||||
"email": [
|
||||
1,
|
||||
@@ -8357,7 +8369,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"verifyEmailAndGetLoginToken": [
|
||||
260,
|
||||
261,
|
||||
{
|
||||
"emailVerificationToken": [
|
||||
1,
|
||||
@@ -8377,7 +8389,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"verifyEmailAndGetWorkspaceAgnosticToken": [
|
||||
252,
|
||||
253,
|
||||
{
|
||||
"emailVerificationToken": [
|
||||
1,
|
||||
@@ -8393,7 +8405,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"getAuthTokensFromOTP": [
|
||||
262,
|
||||
263,
|
||||
{
|
||||
"otp": [
|
||||
1,
|
||||
@@ -8413,7 +8425,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"signUp": [
|
||||
252,
|
||||
253,
|
||||
{
|
||||
"email": [
|
||||
1,
|
||||
@@ -8435,7 +8447,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"signUpInWorkspace": [
|
||||
257,
|
||||
258,
|
||||
{
|
||||
"email": [
|
||||
1,
|
||||
@@ -8466,13 +8478,13 @@ export default {
|
||||
}
|
||||
],
|
||||
"signUpInNewWorkspace": [
|
||||
257
|
||||
],
|
||||
"generateTransientToken": [
|
||||
258
|
||||
],
|
||||
"generateTransientToken": [
|
||||
259
|
||||
],
|
||||
"getAuthTokensFromLoginToken": [
|
||||
262,
|
||||
263,
|
||||
{
|
||||
"loginToken": [
|
||||
1,
|
||||
@@ -8485,7 +8497,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"authorizeApp": [
|
||||
249,
|
||||
250,
|
||||
{
|
||||
"clientId": [
|
||||
1,
|
||||
@@ -8507,7 +8519,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"renewToken": [
|
||||
262,
|
||||
263,
|
||||
{
|
||||
"appToken": [
|
||||
1,
|
||||
@@ -8516,7 +8528,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"generateApiKeyToken": [
|
||||
261,
|
||||
262,
|
||||
{
|
||||
"apiKeyId": [
|
||||
3,
|
||||
@@ -8529,7 +8541,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"emailPasswordResetLink": [
|
||||
253,
|
||||
254,
|
||||
{
|
||||
"email": [
|
||||
1,
|
||||
@@ -8541,7 +8553,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"updatePasswordViaResetToken": [
|
||||
255,
|
||||
256,
|
||||
{
|
||||
"passwordResetToken": [
|
||||
1,
|
||||
@@ -8642,7 +8654,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"initiateOTPProvisioning": [
|
||||
247,
|
||||
248,
|
||||
{
|
||||
"loginToken": [
|
||||
1,
|
||||
@@ -8655,10 +8667,10 @@ export default {
|
||||
}
|
||||
],
|
||||
"initiateOTPProvisioningForAuthenticatedUser": [
|
||||
247
|
||||
248
|
||||
],
|
||||
"deleteTwoFactorAuthenticationMethod": [
|
||||
246,
|
||||
247,
|
||||
{
|
||||
"twoFactorAuthenticationMethodId": [
|
||||
3,
|
||||
@@ -8667,7 +8679,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"verifyTwoFactorAuthenticationMethodForAuthenticatedUser": [
|
||||
248,
|
||||
249,
|
||||
{
|
||||
"otp": [
|
||||
1,
|
||||
@@ -8773,7 +8785,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"impersonate": [
|
||||
266,
|
||||
267,
|
||||
{
|
||||
"userId": [
|
||||
3,
|
||||
@@ -8795,7 +8807,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"saveImapSmtpCaldavAccount": [
|
||||
290,
|
||||
291,
|
||||
{
|
||||
"accountOwnerId": [
|
||||
3,
|
||||
@@ -8998,13 +9010,13 @@ export default {
|
||||
}
|
||||
],
|
||||
"enablePostgresProxy": [
|
||||
291
|
||||
292
|
||||
],
|
||||
"disablePostgresProxy": [
|
||||
291
|
||||
292
|
||||
],
|
||||
"createPublicDomain": [
|
||||
279,
|
||||
280,
|
||||
{
|
||||
"domain": [
|
||||
1,
|
||||
@@ -9031,14 +9043,14 @@ export default {
|
||||
}
|
||||
],
|
||||
"createEmailingDomain": [
|
||||
281,
|
||||
282,
|
||||
{
|
||||
"domain": [
|
||||
1,
|
||||
"String!"
|
||||
],
|
||||
"driver": [
|
||||
282,
|
||||
283,
|
||||
"EmailingDomainDriver!"
|
||||
]
|
||||
}
|
||||
@@ -9053,7 +9065,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"verifyEmailingDomain": [
|
||||
281,
|
||||
282,
|
||||
{
|
||||
"id": [
|
||||
1,
|
||||
@@ -9130,7 +9142,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"createDevelopmentApplication": [
|
||||
267,
|
||||
268,
|
||||
{
|
||||
"universalIdentifier": [
|
||||
1,
|
||||
@@ -9143,7 +9155,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"generateApplicationToken": [
|
||||
269,
|
||||
270,
|
||||
{
|
||||
"applicationId": [
|
||||
3,
|
||||
@@ -9152,7 +9164,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"syncApplication": [
|
||||
268,
|
||||
269,
|
||||
{
|
||||
"manifest": [
|
||||
15,
|
||||
@@ -9161,7 +9173,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"uploadApplicationFile": [
|
||||
270,
|
||||
271,
|
||||
{
|
||||
"file": [
|
||||
372,
|
||||
@@ -9195,7 +9207,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"renewApplicationToken": [
|
||||
269,
|
||||
270,
|
||||
{
|
||||
"applicationRefreshToken": [
|
||||
1,
|
||||
@@ -10745,12 +10757,12 @@ export default {
|
||||
"settings": [
|
||||
15
|
||||
],
|
||||
"isLabelSyncedWithName": [
|
||||
6
|
||||
],
|
||||
"objectMetadataId": [
|
||||
3
|
||||
],
|
||||
"isLabelSyncedWithName": [
|
||||
6
|
||||
],
|
||||
"isRemoteCreation": [
|
||||
6
|
||||
],
|
||||
@@ -10815,6 +10827,9 @@ export default {
|
||||
"settings": [
|
||||
15
|
||||
],
|
||||
"objectMetadataId": [
|
||||
3
|
||||
],
|
||||
"isLabelSyncedWithName": [
|
||||
6
|
||||
],
|
||||
@@ -11455,7 +11470,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"logicFunctionLogs": [
|
||||
296,
|
||||
246,
|
||||
{
|
||||
"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/scripts/setup-db.js
|
||||
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/database/scripts/setup-db.js
|
||||
fi
|
||||
|
||||
# Always run migrations (idempotent — skips already-applied ones)
|
||||
yarn database:migrate:prod
|
||||
yarn database:migrate:prod --force
|
||||
|
||||
yarn command:prod cache:flush
|
||||
yarn command:prod upgrade
|
||||
|
||||
@@ -38,12 +38,6 @@ 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 \
|
||||
|
||||
@@ -13,8 +13,7 @@ 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."
|
||||
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/scripts/setup-db.js
|
||||
yarn database:migrate:prod
|
||||
yarn database:init:prod
|
||||
fi
|
||||
|
||||
yarn command:prod cache:flush
|
||||
|
||||
@@ -61,7 +61,7 @@ const jestConfig = {
|
||||
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
||||
coverageThreshold: {
|
||||
global: {
|
||||
statements: 48.5,
|
||||
statements: 48.4,
|
||||
lines: 47.0,
|
||||
functions: 39.5,
|
||||
},
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 91 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
File diff suppressed because one or more lines are too long
@@ -506,10 +506,10 @@ msgstr "1. Tipe"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 werkvloeiknoopuitvoerings"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12u - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24u - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API's"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API's & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Afkappingsteken en punt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "opdragkieslysitem"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Opdragte na knipbord gekopieer"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommas en punt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punte en komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Kon nie vaardigheid aktiveer nie"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Kon nie vaardigheid verwyder nie"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nuwe vaardigheid"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Soek 'n rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Soek 'n vaardigheid..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Vaardigheid"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Vaardigheid geaktiveer"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Vaardigheid verwyder"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Sorterings"
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spasies en komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. نوع"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "١٠٬٠٠٠ تنفيذ لعقدة سير العمل"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12 ساعة - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24 ساعة - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "واجهات برمجة التطبيقات"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "واجهة برمجة التطبيقات والويب هوك"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "العلامة الاقتباس والنقطة - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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 "إغلاق اللوحة الجانبية"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "عنصر قائمة الأوامر"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "تم نسخ الأوامر إلى الحافظة"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "الفواصل والنقطة - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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 "السياق"
|
||||
@@ -3883,6 +3895,7 @@ msgstr "إنشاء مساحة العمل الخاصة بك"
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr "بيانات الاعتماد"
|
||||
|
||||
@@ -4356,7 +4369,7 @@ msgstr "إلغاء تنشيط سير العمل"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,10 @@ msgstr "لا تقم بإنشاء جهات الاتصال من/إلى Gmail، أ
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "لا تقم بمزامنة الرسائل الالكترونية من team@ أو support@ أو noreply@ . . ."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "النقاط والفاصلة - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "فشل في تنشيط المهارة"
|
||||
|
||||
@@ -6391,7 +6416,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "فشل حذف الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "فشل في حذف المهارة"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ msgstr "النماذج لهذا المزود. بدّل للتفعيل أو ال
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "الإثنين"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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 "المزيد"
|
||||
|
||||
@@ -9566,7 +9610,7 @@ msgstr "سجل جديد"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "مهارة جديدة"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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 "فتح اللوحة الجانبية"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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 "أخرى"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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 "إعادة التعيين إلى الافتراضي"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ msgstr "الروسية"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "السبت"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "ابحث عن دور..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "ابحث عن مهارة..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "مهارة"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "تم تنشيط المهارة"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "تم حذف المهارة"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ msgstr "لم يتم العثور على المهارة"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "المهارات"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "معايير الترتيب"
|
||||
msgid "Source"
|
||||
msgstr "المصدر"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "المسافات والفاصلة - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ msgstr "المجموع"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "الأحد"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API i Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apòstrof i punt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "element del menú de comandaments"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Ordres copiades al porta-retalls"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Comes i punt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punts i coma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "No s'ha pogut activar l'habilitat"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "No s'ha pogut suprimir l'habilitat"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nova habilitat"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Cerca un rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Cerca una habilitat..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Habilitat"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilitat activada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilitat suprimida"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Criteris d'ordenació"
|
||||
msgid "Source"
|
||||
msgstr "Font"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espais i coma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof a tečka - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "položka menu příkazů"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Příkazy zkopírovány do schránky"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Čárky a tečka - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Tečky a čárky - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Nepodařilo se aktivovat dovednost"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Nepodařilo se smazat dovednost"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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í"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nová dovednost"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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í"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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í"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Vyhledat roli..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Vyhledat dovednost..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Dovednost"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Dovednost aktivována"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Dovednost smazána"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Řazení"
|
||||
msgid "Source"
|
||||
msgstr "Zdroj"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mezery a čárka - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Skriv"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 workflow node eksekveringer"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12 timer - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24 timer - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API'er"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API'er & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Anførselstegn og punktum - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "kommando-menu menupunkt"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Kommandoer kopieret til udklipsholder"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommaer og punktum - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punktummer og komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Kunne ikke aktivere færdighed"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Kunne ikke slette færdighed"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Ny færdighed"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Søg en rolle..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Søg efter en færdighed..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Færdighed"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Færdighed aktiveret"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Færdighed slettet"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Sorteringer"
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mellemrum og komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14874,6 +14934,13 @@ 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"
|
||||
@@ -15143,6 +15210,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Typ"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 Workflow-Knotenausführungen"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "Schnittstellen"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "APIs & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostroph und Punkt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "Befehlsmenü-Eintrag"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Befehle in die Zwischenablage kopiert"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommas und Punkt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punkte und Komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Skill konnte nicht aktiviert werden"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Skill konnte nicht gelöscht werden"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Neuer Skill"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Nach einer Rolle suchen..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Nach einem Skill suchen..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Skill"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Skill aktiviert"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Skill gelöscht"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Sortierungen"
|
||||
msgid "Source"
|
||||
msgstr "Quelle"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Leerzeichen und Komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Τύπος"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 εκτελέσεις κόμβου ροής εργασιών"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12ω - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24ω - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "«Απόστροφος και τελεία - {apostropheAndDotExample}»"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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 "Κλείσιμο πλευρικού πάνελ"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "στοιχείο μενού εντολών"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Οι εντολές αντιγράφηκαν στο πρόχειρο"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Κόμματα και τελεία - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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 "Περιβάλλον"
|
||||
@@ -3883,6 +3895,7 @@ msgstr "Δημιουργία του χώρου εργασίας σας"
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr "Διαπιστευτήρια"
|
||||
|
||||
@@ -4356,7 +4369,7 @@ msgstr "Απενεργοποίηση Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,10 @@ msgstr "Μην δημιουργείτε επαφές από/προς Gmail, Outl
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Μην συγχρονίζετε emails από το team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Τελείες και κόμμα - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Αποτυχία ενεργοποίησης δεξιότητας"
|
||||
|
||||
@@ -6391,7 +6416,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Αποτυχία διαγραφής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Αποτυχία διαγραφής δεξιότητας"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ msgstr "Μοντέλα για αυτόν τον πάροχο. Ενεργοποι
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Δευτέρα"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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 "Περισσότερα"
|
||||
|
||||
@@ -9566,7 +9610,7 @@ msgstr "Νέα εγγραφή"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Νέα δεξιότητα"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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 "Άνοιγμα πλευρικού πάνελ"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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 "Άλλο"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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 "Επαναφορά στις Προεπιλογές"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ msgstr "Ρωσικά"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Σάββατο"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Αναζήτηση ρόλου..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Αναζήτηση δεξιότητας..."
|
||||
|
||||
@@ -13163,12 +13240,12 @@ msgid "Skill"
|
||||
msgstr "Δεξιότητα"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Η δεξιότητα ενεργοποιήθηκε"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Η δεξιότητα διαγράφηκε"
|
||||
|
||||
@@ -13185,6 +13262,7 @@ msgstr "Δεν βρέθηκε δεξιότητα"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Δεξιότητες"
|
||||
|
||||
@@ -13330,10 +13408,10 @@ msgstr "Ταξινομήσεις"
|
||||
msgid "Source"
|
||||
msgstr "Πηγή"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Κενά και κόμμα - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13639,6 +13717,7 @@ msgstr "Σύνολο"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Κυριακή"
|
||||
|
||||
@@ -13787,43 +13866,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14876,6 +14936,13 @@ 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"
|
||||
@@ -15145,6 +15212,11 @@ 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"
|
||||
|
||||
@@ -501,10 +501,10 @@ msgstr "1. Type"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10,000 workflow node executions"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr "12h"
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr "24h"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1746,6 +1746,11 @@ 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"
|
||||
@@ -1811,10 +1816,10 @@ msgstr "APIs"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "APIs & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr "Apostrophe and dot"
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2362,6 +2367,11 @@ 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}"
|
||||
@@ -3013,6 +3023,7 @@ 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"
|
||||
|
||||
@@ -3109,10 +3120,10 @@ msgstr "command menu item"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Commands copied to clipboard"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Commas and dot - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr "Commas and dot"
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3387,6 +3398,7 @@ 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"
|
||||
@@ -3878,6 +3890,7 @@ 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"
|
||||
|
||||
@@ -4351,7 +4364,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4369,6 +4382,11 @@ 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
|
||||
@@ -4937,10 +4955,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Dots and comma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr "Dots and comma"
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5160,6 +5178,13 @@ 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"
|
||||
@@ -6361,7 +6386,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Failed to activate skill"
|
||||
|
||||
@@ -6386,7 +6411,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Failed to delete skill"
|
||||
|
||||
@@ -6656,6 +6681,11 @@ 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"
|
||||
@@ -6759,9 +6789,6 @@ 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
|
||||
@@ -7383,6 +7410,11 @@ 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
|
||||
@@ -7491,6 +7523,16 @@ 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"
|
||||
@@ -9129,6 +9171,7 @@ 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"
|
||||
|
||||
@@ -9179,6 +9222,7 @@ 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"
|
||||
|
||||
@@ -9561,7 +9605,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "New Skill"
|
||||
|
||||
@@ -9702,6 +9746,11 @@ 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"
|
||||
@@ -10000,6 +10049,12 @@ 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"
|
||||
@@ -10530,6 +10585,7 @@ 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"
|
||||
|
||||
@@ -10627,6 +10683,8 @@ 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"
|
||||
|
||||
@@ -11001,6 +11059,12 @@ 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
|
||||
@@ -11547,6 +11611,12 @@ 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"
|
||||
@@ -11839,6 +11909,11 @@ 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"
|
||||
@@ -11846,6 +11921,7 @@ 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"
|
||||
|
||||
@@ -12147,6 +12223,7 @@ 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"
|
||||
|
||||
@@ -12272,7 +12349,7 @@ msgid "Search a role..."
|
||||
msgstr "Search a role..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Search a skill..."
|
||||
|
||||
@@ -13156,12 +13233,12 @@ msgid "Skill"
|
||||
msgstr "Skill"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Skill activated"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Skill deleted"
|
||||
|
||||
@@ -13178,6 +13255,7 @@ 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"
|
||||
|
||||
@@ -13323,10 +13401,10 @@ msgstr "Sorts"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr "Spaces and comma"
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13632,6 +13710,7 @@ 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"
|
||||
|
||||
@@ -13780,43 +13859,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14869,6 +14929,13 @@ 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"
|
||||
@@ -15138,6 +15205,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 ejecuciones de nodos de workflow"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API y Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apóstrofe y punto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "elemento del menú de comandos"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandos copiados al portapapeles"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Comas y punto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Puntos y coma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "No se pudo activar la habilidad"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "No se pudo eliminar la habilidad"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nueva habilidad"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Buscar un rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Buscar una habilidad..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Habilidad"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilidad activada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilidad eliminada"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Criterios de ordenación"
|
||||
msgid "Source"
|
||||
msgstr "Fuente"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espacios y coma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14874,6 +14934,13 @@ 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"
|
||||
@@ -15143,6 +15210,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Kirjoita"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 työnkulun solmun suoritusta"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "Rajapinnat"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API:t & Webhookit"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrofi ja piste - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "komentovalikon valikkokohta"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Komennot kopioitu leikepöydälle"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Pilkkuja ja piste - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pisteitä ja pilkku - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Taidon aktivointi epäonnistui"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Taidon poistaminen epäonnistui"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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ää"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Uusi taito"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Etsi roolia..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Etsi taitoa..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Taito"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Taito aktivoitu"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Taito poistettu"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Lajittelut"
|
||||
msgid "Source"
|
||||
msgstr "Lähde"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Välilyöntejä ja pilkku - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrophe et point - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "élément du menu de commande"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Commandes copiées dans le presse-papiers"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Virgules et point - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Points et virgule - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Échec de l'activation de la compétence"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Échec de la suppression de la compétence"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nouvelle compétence"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Rechercher un rôle..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Rechercher une compétence..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Compétence"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Compétence activée"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Compétence supprimée"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Tris"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espaces et virgule - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14874,6 +14934,13 @@ 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"
|
||||
@@ -15143,6 +15210,11 @@ 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
@@ -506,10 +506,10 @@ msgstr "1. סוג"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10,000 הפעלות של צמתים בתהליכי עבודה"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12ש - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24ש - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "APIים"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API ו-Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "גרש ונקודה - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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 "סגור את חלונית הצד"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "פריט תפריט פקודות"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "הפקודות הועתקו ללוח הגזירים"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "פסיקים ונקודה - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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 "הקשר"
|
||||
@@ -3883,6 +3895,7 @@ msgstr "יוצר את המרחב שלך"
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr "אישורים"
|
||||
|
||||
@@ -4356,7 +4369,7 @@ msgstr "השבת זרימת עבודה"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,10 @@ msgstr "אל תיצור אנשי קשר מ-Gmail, Outlook"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "אל תסנכרן הודעות מ-team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "נקודות ופסיק - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "הפעלת המיומנות נכשלה"
|
||||
|
||||
@@ -6391,7 +6416,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "נכשל במחיקה של עבודות. נא לנסות שוב מאוחר יותר."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "מחיקת המיומנות נכשלה"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ msgstr "מודלים עבור ספק זה. החליפו כדי להפעיל או
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "יום שני"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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 "עוד"
|
||||
|
||||
@@ -9566,7 +9610,7 @@ msgstr "רשומה חדשה"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "מיומנות חדשה"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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 "פתח את חלונית הצד"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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 "אחר"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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 "איפוס לברירת מחדל"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ msgstr "רוסית"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "יום שבת"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "חפש תפקיד..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "חפש מיומנות..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "מיומנות"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "מיומנות הופעלה"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "מיומנות נמחקה"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ msgstr "מיומנות לא נמצאה"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "מיומנויות"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "מיונים"
|
||||
msgid "Source"
|
||||
msgstr "מקור"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "רווחים ופסיק - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ msgstr "\\"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "יום ראשון"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12 óra - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24 óra - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API-k"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API-k és Webhookok"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof és pont - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "parancsmenü menüpont"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "A parancsok vágólapra másolva"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Vesszők és pont - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pontok és vessző - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Nem sikerült aktiválni a készséget"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Nem sikerült törölni a készséget"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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ő"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Új készség"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Szerepkör keresése..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Készség keresése..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Készség"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Készség aktiválva"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Készség törölve"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Rendezések"
|
||||
msgid "Source"
|
||||
msgstr "Forrás"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Szóközök és vessző - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Tipo"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 esecuzioni di nodi del workflow"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API e Webhook"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrofo e punto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "voce del menu comandi"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandi copiati negli appunti"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Virgole e punto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punti e virgola - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Impossibile attivare l'abilità"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Impossibile eliminare l'abilità"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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ì"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nuova abilità"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Cerca un ruolo..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Cerca un'abilità..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Abilità"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Abilità attivata"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Abilità eliminata"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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à"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Ordinamenti"
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spazi e virgola - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14874,6 +14934,13 @@ 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"
|
||||
@@ -15143,6 +15210,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. 種類"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10,000 ワークフローノード実行"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12時間 - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24時間 - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "アポストロフィーとドット - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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 "サイドパネルを閉じる"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "コマンドメニュー項目"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "コマンドがクリップボードにコピーされました"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "コンマとドット - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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 "コンテキスト"
|
||||
@@ -3883,6 +3895,7 @@ msgstr "ワークスペースを作成中"
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr "認証情報"
|
||||
|
||||
@@ -4356,7 +4369,7 @@ msgstr "ワークフローを無効化"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,10 @@ msgstr "Gmail、Outlookメールから/への連絡先を作成しない"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "team@、support@、noreply@からメールを同期しない"
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "ドットとコンマ - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "スキルの有効化に失敗しました"
|
||||
|
||||
@@ -6391,7 +6416,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "ジョブの削除に失敗しました。後でもう一度お試しください。"
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "スキルの削除に失敗しました"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ msgstr "このプロバイダーのモデル。有効化/無効化をトグル
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "月曜日"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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 "もっと"
|
||||
|
||||
@@ -9566,7 +9610,7 @@ msgstr "新しいレコード"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "新規スキル"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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 "サイドパネルを開く"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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 "その他"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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 "デフォルトにリセット"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ msgstr "ロシア語"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "土曜日"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "役割を検索..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "スキルを検索..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "スキル"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "スキルを有効化しました"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "スキルを削除しました"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ msgstr "スキルが見つかりません"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "スキル"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "ソート},{"
|
||||
msgid "Source"
|
||||
msgstr "ソース"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "スペースとコンマ - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ msgstr "合計"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "日曜日"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. 유형"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "워크플로 노드 실행 10,000회"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12시간 - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24시간 - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API 및 웹훅"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "아포스트로피와 점 - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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 "사이드 패널 닫기"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "명령 메뉴 항목"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "명령어가 클립보드에 복사되었습니다"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "쉼표와 점 - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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 "컨텍스트"
|
||||
@@ -3883,6 +3895,7 @@ msgstr "워크스페이스 생성 중"
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr "자격 증명"
|
||||
|
||||
@@ -4356,7 +4369,7 @@ msgstr "워크플로 비활성화"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,10 @@ msgstr "Gmail, Outlook 이메일에서 연락처를 생성하지 마십시오."
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "team@, support@, noreply@ 이메일을 동기화하지 마십시오."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "점과 쉼표 - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "엔터프라이즈 라이선스를 활성화하지 못했습니다. 키를 확인하거나 지원팀에 문의하세요."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "스킬 활성화에 실패했습니다"
|
||||
|
||||
@@ -6391,7 +6416,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "작업 삭제에 실패했습니다. 나중에 다시 시도하세요."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "스킬 삭제에 실패했습니다"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ msgstr "이 공급자의 모델입니다. 토글하여 활성화하거나 비활
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "월요일"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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 "더보기"
|
||||
|
||||
@@ -9566,7 +9610,7 @@ msgstr "새 레코드"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "새 스킬"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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 "사이드 패널 열기"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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 "기타"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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 "기본값으로 재설정"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ msgstr "러시아어"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "토요일"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "역할 검색..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "스킬 검색..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "스킬"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "스킬 활성화됨"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "스킬 삭제됨"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ msgstr "스킬을 찾을 수 없음"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "스킬"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "정렬"
|
||||
msgid "Source"
|
||||
msgstr "소스"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "공백과 쉼표 - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ msgstr "합계"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "일요일"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Type"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "{num, plural, one {10 werkknooppuntuitvoering} other {# werkknooppuntuitvoeringen}}"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12u - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24u - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API's"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API's & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof en punt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "opdrachtmenu-item"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Commando's gekopieerd naar klembord"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Komma's en punt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punten en komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Activeren van vaardigheid mislukt"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Verwijderen van vaardigheid mislukt"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nieuwe vaardigheid"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Zoek een rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Zoek een vaardigheid..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Vaardigheid"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Vaardigheid geactiveerd"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Vaardigheid verwijderd"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Sorteringen"
|
||||
msgid "Source"
|
||||
msgstr "Bron"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spaties en komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14874,6 +14934,13 @@ 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"
|
||||
@@ -15143,6 +15210,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Skriv"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 nodeutføringer av arbeidsflyt"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12t - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24t - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API-er"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API og webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof og punktum - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "menyelement i kommandomenyen"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Kommandoer kopiert til utklippstavlen"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommaer og punktum - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punktum og komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Kunne ikke aktivere ferdighet"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Kunne ikke slette ferdighet"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Ny ferdighet"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Søk etter en rolle..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Søk etter en ferdighet..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Ferdighet"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Ferdighet aktivert"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Ferdighet slettet"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Sorteringer"
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mellomrom og komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API i webhooki"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof i kropka - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "pozycja menu poleceń"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Przecinki i kropka - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Kropki i przecinek - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Nie udało się aktywować umiejętności"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Nie udało się usunąć umiejętności"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nowa umiejętność"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Szukaj roli..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Szukaj umiejętności..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Umiejętność"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Umiejętność aktywowana"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Umiejętność usunięta"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Sortowanie"
|
||||
msgid "Source"
|
||||
msgstr "Źródło"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spacje i przecinek - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -501,9 +501,9 @@ msgstr ""
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
@@ -537,9 +537,9 @@ msgstr ""
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
@@ -1746,6 +1746,11 @@ 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"
|
||||
@@ -1811,9 +1816,9 @@ msgstr ""
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
@@ -2362,6 +2367,11 @@ 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}"
|
||||
@@ -3013,6 +3023,7 @@ 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 ""
|
||||
|
||||
@@ -3109,9 +3120,9 @@ msgstr ""
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
@@ -3387,6 +3398,7 @@ 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 ""
|
||||
@@ -3878,6 +3890,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr ""
|
||||
|
||||
@@ -4351,7 +4364,7 @@ msgstr ""
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4369,6 +4382,11 @@ 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
|
||||
@@ -4937,9 +4955,9 @@ msgstr ""
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
@@ -5160,6 +5178,13 @@ 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"
|
||||
@@ -6361,7 +6386,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -6386,7 +6411,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -6656,6 +6681,11 @@ 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"
|
||||
@@ -6759,9 +6789,6 @@ 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
|
||||
@@ -7383,6 +7410,11 @@ 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
|
||||
@@ -7491,6 +7523,16 @@ 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"
|
||||
@@ -9129,6 +9171,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
@@ -9179,6 +9222,7 @@ 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 ""
|
||||
|
||||
@@ -9561,7 +9605,7 @@ msgstr ""
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -9702,6 +9746,11 @@ 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"
|
||||
@@ -10000,6 +10049,12 @@ 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"
|
||||
@@ -10530,6 +10585,7 @@ 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 ""
|
||||
|
||||
@@ -10627,6 +10683,8 @@ 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 ""
|
||||
|
||||
@@ -11001,6 +11059,12 @@ 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
|
||||
@@ -11547,6 +11611,12 @@ 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"
|
||||
@@ -11839,6 +11909,11 @@ 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"
|
||||
@@ -11846,6 +11921,7 @@ 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 ""
|
||||
|
||||
@@ -12147,6 +12223,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
@@ -12272,7 +12349,7 @@ msgid "Search a role..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
@@ -13156,12 +13233,12 @@ msgid "Skill"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr ""
|
||||
|
||||
@@ -13178,6 +13255,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr ""
|
||||
|
||||
@@ -13323,9 +13401,9 @@ msgstr ""
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
@@ -13632,6 +13710,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
@@ -13780,43 +13859,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14867,6 +14927,13 @@ 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"
|
||||
@@ -15136,6 +15203,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "APIs"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API e Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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 ""
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "item do menu de comando"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandos copiados para a área de transferência"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Vírgulas e ponto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pontos e vírgula - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Falha ao ativar a habilidade"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Falha ao excluir a habilidade"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nova habilidade"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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 ""
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Pesquise um papel..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Pesquisar uma habilidade..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Habilidade"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilidade ativada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilidade excluída"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Ordenações"
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espaços e vírgula - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "APIs"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API e Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apóstrofo e ponto - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "item do menu de comandos"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comandos copiados para a área de transferência"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Vírgulas e ponto - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Pontos e vírgula - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Falha ao ativar a habilidade"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Falha ao excluir a habilidade"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Nova Habilidade"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Procure uma função..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Pesquisar uma habilidade..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Habilidade"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Habilidade ativada"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Habilidade excluída"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Ordenações"
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Espaços e vírgula - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -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: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API-uri"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API-uri şi Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof și punct - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "element din meniul de comenzi"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Comenzi copiate în clipboard"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Virgule și punct - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Puncte și virgulă - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Activarea abilității a eșuat"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Ștergerea abilității a eșuat"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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"
|
||||
|
||||
@@ -9566,7 +9610,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Abilitate nouă"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ 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ă"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Căutați un rol..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Căutați o abilitate..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Abilitate"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Abilitate activată"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Abilitate ștearsă"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ 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"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Sortări"
|
||||
msgid "Source"
|
||||
msgstr "Sursa"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spații și virgulă - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ 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ă"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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.
@@ -506,10 +506,10 @@ msgstr "1. Тип"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10.000 извршења чворова радног тока"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12ч - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24ч - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "АПИ-и"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API и Вебхукс"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Апостроф и тачка - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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 "Затвори бочни панел"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "ставка менија команде"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Команде копиране у клипборд"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Запете и тачка - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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 "Контекст"
|
||||
@@ -3883,6 +3895,7 @@ msgstr "Креирање вашег радног простора"
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr "Акредитиви"
|
||||
|
||||
@@ -4356,7 +4369,7 @@ msgstr "Деактивирај радни ток"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,10 @@ msgstr "Не креирајте контакте из/у Gmail, Outlook имеј
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Не синхронизујте имејлове са team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Тачке и запета - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Није успело активирање вештине"
|
||||
|
||||
@@ -6391,7 +6416,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Није успело брисање послова. Покушајте поново касније."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Није успело брисање вештине"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ msgstr "Модели за овог провајдера. Пребаците да
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Понедељак"
|
||||
|
||||
@@ -9184,6 +9227,7 @@ 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 "Још"
|
||||
|
||||
@@ -9566,7 +9610,7 @@ msgstr "Нови запис"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Нова вештина"
|
||||
|
||||
@@ -9707,6 +9751,11 @@ 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"
|
||||
@@ -10005,6 +10054,12 @@ 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"
|
||||
@@ -10535,6 +10590,7 @@ 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 "Отвори бочни панел"
|
||||
|
||||
@@ -10632,6 +10688,8 @@ 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 "Остало"
|
||||
|
||||
@@ -11006,6 +11064,12 @@ 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
|
||||
@@ -11552,6 +11616,12 @@ 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"
|
||||
@@ -11844,6 +11914,11 @@ 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"
|
||||
@@ -11851,6 +11926,7 @@ 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 "Врати на подразумевано"
|
||||
|
||||
@@ -12152,6 +12228,7 @@ msgstr "Руски"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Субота"
|
||||
|
||||
@@ -12277,7 +12354,7 @@ msgid "Search a role..."
|
||||
msgstr "Претражите улогу..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Претражите вештину..."
|
||||
|
||||
@@ -13161,12 +13238,12 @@ msgid "Skill"
|
||||
msgstr "Вештина"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Вештина је активирана"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Вештина је обрисана"
|
||||
|
||||
@@ -13183,6 +13260,7 @@ msgstr "Вештина није пронађена"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Вештине"
|
||||
|
||||
@@ -13328,10 +13406,10 @@ msgstr "Сортирања"
|
||||
msgid "Source"
|
||||
msgstr "Извор"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Размаци и запета - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13637,6 +13715,7 @@ msgstr "Збир"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Недеља"
|
||||
|
||||
@@ -13785,43 +13864,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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"
|
||||
@@ -14872,6 +14932,13 @@ 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"
|
||||
@@ -15141,6 +15208,11 @@ 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"
|
||||
|
||||
@@ -506,10 +506,10 @@ msgstr "1. Typ"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10 000 utföranden av arbetsflödesnoder"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. 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: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -1751,6 +1751,11 @@ 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"
|
||||
@@ -1816,10 +1821,10 @@ msgstr "API:er"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "API:er & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrof och punkt - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2367,6 +2372,11 @@ 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}"
|
||||
@@ -3018,6 +3028,7 @@ 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"
|
||||
|
||||
@@ -3114,10 +3125,10 @@ msgstr "kommandomenyalternativ"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Kommandon kopierade till urklipp"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Kommatecken och punkt - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3392,6 +3403,7 @@ 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"
|
||||
@@ -3883,6 +3895,7 @@ 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"
|
||||
|
||||
@@ -4356,7 +4369,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.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
|
||||
@@ -4374,6 +4387,11 @@ 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
|
||||
@@ -4942,10 +4960,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: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Punkt och komma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5165,6 +5183,13 @@ 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"
|
||||
@@ -6366,7 +6391,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Det gick inte att aktivera färdigheten"
|
||||
|
||||
@@ -6391,7 +6416,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Det gick inte att ta bort färdigheten"
|
||||
|
||||
@@ -6661,6 +6686,11 @@ 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"
|
||||
@@ -6764,9 +6794,6 @@ 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
|
||||
@@ -7388,6 +7415,11 @@ 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
|
||||
@@ -7496,6 +7528,16 @@ 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"
|
||||
@@ -9134,6 +9176,7 @@ 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"
|
||||
@@ -9186,6 +9229,7 @@ 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"
|
||||
|
||||
@@ -9568,7 +9612,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/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "Ny färdighet"
|
||||
|
||||
@@ -9709,6 +9753,11 @@ 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"
|
||||
@@ -10007,6 +10056,12 @@ 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"
|
||||
@@ -10537,6 +10592,7 @@ 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"
|
||||
|
||||
@@ -10634,6 +10690,8 @@ 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"
|
||||
|
||||
@@ -11008,6 +11066,12 @@ 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
|
||||
@@ -11554,6 +11618,12 @@ 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"
|
||||
@@ -11846,6 +11916,11 @@ 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"
|
||||
@@ -11853,6 +11928,7 @@ 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"
|
||||
|
||||
@@ -12154,6 +12230,7 @@ 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"
|
||||
@@ -12281,7 +12358,7 @@ msgid "Search a role..."
|
||||
msgstr "Sök en roll..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Sök en färdighet..."
|
||||
|
||||
@@ -13165,12 +13242,12 @@ msgid "Skill"
|
||||
msgstr "Färdighet"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Färdighet aktiverad"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Färdighet raderad"
|
||||
|
||||
@@ -13187,6 +13264,7 @@ 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"
|
||||
|
||||
@@ -13332,10 +13410,10 @@ msgstr "Sorteringar"
|
||||
msgid "Source"
|
||||
msgstr "Källa"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Mellanslag och komma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13641,6 +13719,7 @@ 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"
|
||||
@@ -13791,49 +13870,24 @@ 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/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.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 ""
|
||||
"Systeminst | ||||