Compare commits
56
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5b4f791ddc | ||
|
|
edead399b7 | ||
|
|
06f09b35ae | ||
|
|
36fbfca069 | ||
|
|
5116002ca2 | ||
|
|
caac791421 | ||
|
|
d3a1f45027 | ||
|
|
a5174c0519 | ||
|
|
50c5a1a8de | ||
|
|
74e26ae635 | ||
|
|
5e3cf7cd2b | ||
|
|
16e145b036 | ||
|
|
1e908e5f0f | ||
|
|
d495a9f412 | ||
|
|
1df9942416 | ||
|
|
34972f6167 | ||
|
|
37acd15033 | ||
|
|
c76824e69f | ||
|
|
7bd84a6029 | ||
|
|
1577a1933f | ||
|
|
086ea644bb | ||
|
|
19f11b1216 | ||
|
|
9b8cb610c3 | ||
|
|
64c7f52f06 | ||
|
|
dc6e76b6ab | ||
|
|
a78a843419 | ||
|
|
5eaabe95e7 | ||
|
|
5edc034f8b | ||
|
|
9080180156 | ||
|
|
f8dff23a3e | ||
|
|
1b8f26323a | ||
|
|
80337d5c37 | ||
|
|
91b40b391d | ||
|
|
c27e3cd1a0 | ||
|
|
ffb6029c2d | ||
|
|
6073bb6706 | ||
|
|
5874fb5f39 | ||
|
|
37dbd94596 | ||
|
|
238018dc7b | ||
|
|
2267c56f15 | ||
|
|
7aed9291cd | ||
|
|
5c867303e0 | ||
|
|
fda3eabb5f | ||
|
|
7d6111b0a5 | ||
|
|
4df3539ba1 | ||
|
|
8905d860c7 | ||
|
|
bc7b5aee58 | ||
|
|
31b6dbc583 | ||
|
|
3306d66f5b | ||
|
|
6cd3f2db2b | ||
|
|
0e0fb246e6 | ||
|
|
83917f0dca | ||
|
|
ac4819758d | ||
|
|
d07c27a907 | ||
|
|
265d859c6e | ||
|
|
1ae88f4e4f |
@@ -0,0 +1,46 @@
|
||||
name: Deploy Twenty App
|
||||
description: Build and deploy a Twenty app to a remote instance
|
||||
|
||||
inputs:
|
||||
api-url:
|
||||
description: Base URL of the target Twenty instance (e.g. https://my.twenty.instance)
|
||||
required: true
|
||||
api-key:
|
||||
description: API key or access token for the target instance
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Enable Corepack
|
||||
shell: bash
|
||||
run: corepack enable
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
cache: yarn
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Configure remote
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir -p ~/.twenty
|
||||
node -e "
|
||||
const fs = require('fs'), path = require('path'), os = require('os');
|
||||
fs.writeFileSync(path.join(os.homedir(), '.twenty', 'config.json'), JSON.stringify({
|
||||
version: 1,
|
||||
remotes: { target: { apiUrl: process.env.API_URL, apiKey: process.env.API_KEY } }
|
||||
}, null, 2));
|
||||
"
|
||||
env:
|
||||
API_URL: ${{ inputs.api-url }}
|
||||
API_KEY: ${{ inputs.api-key }}
|
||||
|
||||
- name: Deploy
|
||||
shell: bash
|
||||
run: yarn twenty deploy --remote target
|
||||
@@ -0,0 +1,46 @@
|
||||
name: Install Twenty App
|
||||
description: Install (or upgrade) a Twenty app on a specific workspace
|
||||
|
||||
inputs:
|
||||
api-url:
|
||||
description: Base URL of the target Twenty instance (e.g. https://my.twenty.instance)
|
||||
required: true
|
||||
api-key:
|
||||
description: API key or access token for the target workspace
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: composite
|
||||
steps:
|
||||
- name: Enable Corepack
|
||||
shell: bash
|
||||
run: corepack enable
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
cache: yarn
|
||||
|
||||
- name: Install dependencies
|
||||
shell: bash
|
||||
run: yarn install --immutable
|
||||
|
||||
- name: Configure remote
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir -p ~/.twenty
|
||||
node -e "
|
||||
const fs = require('fs'), path = require('path'), os = require('os');
|
||||
fs.writeFileSync(path.join(os.homedir(), '.twenty', 'config.json'), JSON.stringify({
|
||||
version: 1,
|
||||
remotes: { target: { apiUrl: process.env.API_URL, apiKey: process.env.API_KEY } }
|
||||
}, null, 2));
|
||||
"
|
||||
env:
|
||||
API_URL: ${{ inputs.api-url }}
|
||||
API_KEY: ${{ inputs.api-key }}
|
||||
|
||||
- name: Install
|
||||
shell: bash
|
||||
run: yarn twenty install --remote target
|
||||
@@ -251,6 +251,14 @@ jobs:
|
||||
rm -f /tmp/current-server.pid
|
||||
fi
|
||||
|
||||
- name: Flush Redis between server runs
|
||||
run: |
|
||||
# Clear all Redis caches to prevent stale data from the current branch
|
||||
# server contaminating the main branch server. Both servers share the
|
||||
# same Redis instance, and CoreEntityCacheService/WorkspaceCacheService
|
||||
# persist cached entities across process restarts.
|
||||
redis-cli -h localhost -p 6379 FLUSHALL || echo "::warning::Failed to flush Redis"
|
||||
|
||||
- name: Checkout main branch
|
||||
run: |
|
||||
git stash
|
||||
|
||||
@@ -34,8 +34,27 @@ jobs:
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-4-cores
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:18
|
||||
env:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
PUBLISHABLE_PACKAGES: twenty-client-sdk twenty-sdk create-twenty-app
|
||||
TWENTY_API_URL: http://localhost:3000
|
||||
TWENTY_API_KEY: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
@@ -120,14 +139,27 @@ jobs:
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty --version
|
||||
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: ./.github/actions/spawn-twenty-app-dev-test
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Create databases
|
||||
run: |
|
||||
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";'
|
||||
|
||||
- name: Setup database
|
||||
run: npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: nohup npx nx start:ci twenty-server &
|
||||
|
||||
- name: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
- name: Authenticate with twenty-server
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty remote add --api-key ${{ steps.twenty.outputs.api-key }} --api-url ${{ steps.twenty.outputs.server-url }}
|
||||
npx --no-install twenty remote add --api-key ${{ env.TWENTY_API_KEY }} --api-url ${{ env.TWENTY_API_URL }}
|
||||
|
||||
- name: Deploy scaffolded app
|
||||
run: |
|
||||
@@ -154,9 +186,6 @@ jobs:
|
||||
echo "$EXEC_OUTPUT" | grep -q 'Created company.*Hello World.*with id'
|
||||
|
||||
- name: Run scaffolded app integration test
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
yarn test
|
||||
|
||||
@@ -32,8 +32,27 @@ jobs:
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-4-cores
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:18
|
||||
env:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
PUBLISHABLE_PACKAGES: twenty-client-sdk twenty-sdk create-twenty-app
|
||||
TWENTY_API_URL: http://localhost:3000
|
||||
TWENTY_API_KEY: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
@@ -114,29 +133,29 @@ jobs:
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty --version
|
||||
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: ./.github/actions/spawn-twenty-app-dev-test
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Create databases
|
||||
run: |
|
||||
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";'
|
||||
|
||||
- name: Setup database
|
||||
run: npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: nohup npx nx start:ci twenty-server &
|
||||
|
||||
- name: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
- name: Authenticate with twenty-server
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty remote add --api-key ${{ steps.twenty.outputs.api-key }} --api-url ${{ steps.twenty.outputs.server-url }}
|
||||
npx --no-install twenty remote add --api-key ${{ env.TWENTY_API_KEY }} --api-url ${{ env.TWENTY_API_URL }}
|
||||
|
||||
- name: Deploy scaffolded app
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty deploy
|
||||
|
||||
- name: Install scaffolded app
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty install
|
||||
|
||||
- name: Run scaffolded app integration test
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
- name: Run scaffolded app integration test (deploys, installs, and verifies the app)
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
yarn test
|
||||
|
||||
@@ -34,8 +34,27 @@ jobs:
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-4-cores
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:18
|
||||
env:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
PUBLISHABLE_PACKAGES: twenty-client-sdk twenty-sdk create-twenty-app
|
||||
TWENTY_API_URL: http://localhost:3000
|
||||
TWENTY_API_KEY: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
@@ -118,14 +137,27 @@ jobs:
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty --version
|
||||
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: ./.github/actions/spawn-twenty-app-dev-test
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Create databases
|
||||
run: |
|
||||
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";'
|
||||
|
||||
- name: Setup database
|
||||
run: npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: nohup npx nx start:ci twenty-server &
|
||||
|
||||
- name: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
- name: Authenticate with twenty-server
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty remote add --api-key ${{ steps.twenty.outputs.api-key }} --api-url ${{ steps.twenty.outputs.server-url }}
|
||||
npx --no-install twenty remote add --api-key ${{ env.TWENTY_API_KEY }} --api-url ${{ env.TWENTY_API_URL }}
|
||||
|
||||
- name: Deploy scaffolded app
|
||||
run: |
|
||||
@@ -152,9 +184,6 @@ jobs:
|
||||
echo "$EXEC_OUTPUT" | grep -q 'Created company.*Hello World.*with id'
|
||||
|
||||
- name: Run scaffolded app integration test
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
yarn test
|
||||
|
||||
@@ -30,8 +30,28 @@ jobs:
|
||||
example-app-hello-world:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 15
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:18
|
||||
env:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
TWENTY_API_URL: http://localhost:3000
|
||||
TWENTY_API_KEY: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -42,15 +62,25 @@ jobs:
|
||||
- name: Build SDK packages
|
||||
run: npx nx build twenty-sdk
|
||||
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: ./.github/actions/spawn-twenty-app-dev-test
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Create databases
|
||||
run: |
|
||||
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";'
|
||||
|
||||
- name: Setup database
|
||||
run: npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: nohup npx nx start:ci twenty-server &
|
||||
|
||||
- name: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
- name: Run integration tests
|
||||
working-directory: packages/twenty-apps/examples/hello-world
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
run: npx vitest run
|
||||
|
||||
ci-example-app-hello-world-status-check:
|
||||
|
||||
@@ -30,8 +30,28 @@ jobs:
|
||||
example-app-postcard:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 15
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:18
|
||||
env:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
TWENTY_API_URL: http://localhost:3000
|
||||
TWENTY_API_KEY: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
@@ -42,15 +62,25 @@ jobs:
|
||||
- name: Build SDK packages
|
||||
run: npx nx build twenty-sdk
|
||||
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: ./.github/actions/spawn-twenty-app-dev-test
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Create databases
|
||||
run: |
|
||||
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";'
|
||||
|
||||
- name: Setup database
|
||||
run: npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: nohup npx nx start:ci twenty-server &
|
||||
|
||||
- name: Wait for server to be ready
|
||||
run: npx wait-on http://localhost:3000/healthz --timeout 120000 --interval 1000
|
||||
|
||||
- name: Run integration tests
|
||||
working-directory: packages/twenty-apps/examples/postcard
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
run: npx vitest run
|
||||
|
||||
ci-example-app-postcard-status-check:
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
name: CD
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
TWENTY_DEPLOY_URL: http://localhost:3000
|
||||
|
||||
concurrency:
|
||||
group: cd-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
deploy-and-install:
|
||||
if: >-
|
||||
github.event_name == 'push' ||
|
||||
(github.event_name == 'pull_request' && github.event.label.name == 'deploy')
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||
|
||||
- name: Deploy
|
||||
uses: twentyhq/twenty/.github/actions/deploy-twenty-app@main
|
||||
with:
|
||||
api-url: ${{ env.TWENTY_DEPLOY_URL }}
|
||||
api-key: ${{ secrets.TWENTY_DEPLOY_API_KEY }}
|
||||
|
||||
- name: Install
|
||||
uses: twentyhq/twenty/.github/actions/install-twenty-app@main
|
||||
with:
|
||||
api-url: ${{ env.TWENTY_DEPLOY_URL }}
|
||||
api-key: ${{ secrets.TWENTY_DEPLOY_API_KEY }}
|
||||
@@ -6,9 +6,16 @@ on:
|
||||
- main
|
||||
pull_request: {}
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
TWENTY_VERSION: latest
|
||||
|
||||
concurrency:
|
||||
group: ci-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -16,12 +23,11 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Spawn Twenty instance
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: twentyhq/twenty/.github/actions/spawn-twenty-docker-image@main
|
||||
uses: twentyhq/twenty/.github/actions/spawn-twenty-app-dev-test@main
|
||||
with:
|
||||
twenty-version: ${{ env.TWENTY_VERSION }}
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Enable Corepack
|
||||
run: corepack enable
|
||||
@@ -30,7 +36,7 @@ jobs:
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
cache: 'yarn'
|
||||
cache: yarn
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --immutable
|
||||
@@ -39,4 +45,4 @@ jobs:
|
||||
run: yarn test
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.access-token }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
name: CD
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
TWENTY_DEPLOY_URL: http://localhost:3000
|
||||
|
||||
concurrency:
|
||||
group: cd-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
deploy-and-install:
|
||||
if: >-
|
||||
github.event_name == 'push' ||
|
||||
(github.event_name == 'pull_request' && github.event.label.name == 'deploy')
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||
|
||||
- name: Deploy
|
||||
uses: twentyhq/twenty/.github/actions/deploy-twenty-app@main
|
||||
with:
|
||||
api-url: ${{ env.TWENTY_DEPLOY_URL }}
|
||||
api-key: ${{ secrets.TWENTY_DEPLOY_API_KEY }}
|
||||
|
||||
- name: Install
|
||||
uses: twentyhq/twenty/.github/actions/install-twenty-app@main
|
||||
with:
|
||||
api-url: ${{ env.TWENTY_DEPLOY_URL }}
|
||||
api-key: ${{ secrets.TWENTY_DEPLOY_API_KEY }}
|
||||
@@ -6,9 +6,16 @@ on:
|
||||
- main
|
||||
pull_request: {}
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
TWENTY_VERSION: latest
|
||||
|
||||
concurrency:
|
||||
group: ci-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -16,12 +23,11 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Spawn Twenty instance
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: twentyhq/twenty/.github/actions/spawn-twenty-docker-image@main
|
||||
uses: twentyhq/twenty/.github/actions/spawn-twenty-app-dev-test@main
|
||||
with:
|
||||
twenty-version: ${{ env.TWENTY_VERSION }}
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Enable Corepack
|
||||
run: corepack enable
|
||||
@@ -30,7 +36,7 @@ jobs:
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
cache: 'yarn'
|
||||
cache: yarn
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --immutable
|
||||
@@ -39,4 +45,4 @@ jobs:
|
||||
run: yarn test
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.access-token }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
name: CD
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
TWENTY_DEPLOY_URL: http://localhost:3000
|
||||
|
||||
concurrency:
|
||||
group: cd-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
deploy-and-install:
|
||||
if: >-
|
||||
github.event_name == 'push' ||
|
||||
(github.event_name == 'pull_request' && github.event.label.name == 'deploy')
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha || github.sha }}
|
||||
|
||||
- name: Deploy
|
||||
uses: twentyhq/twenty/.github/actions/deploy-twenty-app@main
|
||||
with:
|
||||
api-url: ${{ env.TWENTY_DEPLOY_URL }}
|
||||
api-key: ${{ secrets.TWENTY_DEPLOY_API_KEY }}
|
||||
|
||||
- name: Install
|
||||
uses: twentyhq/twenty/.github/actions/install-twenty-app@main
|
||||
with:
|
||||
api-url: ${{ env.TWENTY_DEPLOY_URL }}
|
||||
api-key: ${{ secrets.TWENTY_DEPLOY_API_KEY }}
|
||||
@@ -6,9 +6,16 @@ on:
|
||||
- main
|
||||
pull_request: {}
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
TWENTY_VERSION: latest
|
||||
|
||||
concurrency:
|
||||
group: ci-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -16,12 +23,11 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Spawn Twenty instance
|
||||
- name: Spawn Twenty test instance
|
||||
id: twenty
|
||||
uses: twentyhq/twenty/.github/actions/spawn-twenty-docker-image@main
|
||||
uses: twentyhq/twenty/.github/actions/spawn-twenty-app-dev-test@main
|
||||
with:
|
||||
twenty-version: ${{ env.TWENTY_VERSION }}
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Enable Corepack
|
||||
run: corepack enable
|
||||
@@ -30,7 +36,7 @@ jobs:
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
cache: 'yarn'
|
||||
cache: yarn
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --immutable
|
||||
@@ -39,4 +45,4 @@ jobs:
|
||||
run: yarn test
|
||||
env:
|
||||
TWENTY_API_URL: ${{ steps.twenty.outputs.server-url }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.access-token }}
|
||||
TWENTY_API_KEY: ${{ steps.twenty.outputs.api-key }}
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
import { CoreApiClient } from 'twenty-client-sdk/core';
|
||||
import { definePostInstallLogicFunction } from 'twenty-sdk';
|
||||
|
||||
const POST_CARDS_TO_SEED = [
|
||||
{
|
||||
name: 'Greetings from Paris',
|
||||
content:
|
||||
'Wish you were here! The Eiffel Tower looks even better in person. - Alex',
|
||||
},
|
||||
{
|
||||
name: 'Hello from Tokyo',
|
||||
content:
|
||||
'The cherry blossoms are amazing this time of year. See you soon! - Sam',
|
||||
},
|
||||
];
|
||||
|
||||
const handler = async (): Promise<{
|
||||
message: string;
|
||||
createdIds: string[];
|
||||
}> => {
|
||||
console.log('Seeding 2 post cards...');
|
||||
const client = new CoreApiClient();
|
||||
|
||||
const createdIds: string[] = [];
|
||||
|
||||
for (const postCard of POST_CARDS_TO_SEED) {
|
||||
const { createPostCard } = await client.mutation({
|
||||
createPostCard: {
|
||||
__args: {
|
||||
data: {
|
||||
name: postCard.name,
|
||||
content: postCard.content,
|
||||
},
|
||||
},
|
||||
id: true,
|
||||
},
|
||||
});
|
||||
|
||||
if (!createPostCard?.id) {
|
||||
throw new Error(`Failed to create post card "${postCard.name}"`);
|
||||
}
|
||||
|
||||
createdIds.push(createPostCard.id);
|
||||
}
|
||||
|
||||
console.log('Seeding complete!');
|
||||
return {
|
||||
message: `Seeded ${createdIds.length} post cards`,
|
||||
createdIds,
|
||||
};
|
||||
};
|
||||
|
||||
export default definePostInstallLogicFunction({
|
||||
universalIdentifier: '9f3d8c21-b471-4a82-8e5c-6f3a7b8c9d01',
|
||||
name: 'seed-post-cards',
|
||||
description: 'Seeds the workspace with 2 sample post card records.',
|
||||
timeoutSeconds: 10,
|
||||
handler,
|
||||
});
|
||||
@@ -33,7 +33,7 @@ export default defineRole({
|
||||
objectUniversalIdentifier: POST_CARD_UNIVERSAL_IDENTIFIER,
|
||||
fieldUniversalIdentifier: CONTENT_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
canReadFieldValue: false,
|
||||
canUpdateFieldValue: false,
|
||||
canUpdateFieldValue: true,
|
||||
},
|
||||
],
|
||||
permissionFlags: [PermissionFlag.APPLICATIONS],
|
||||
|
||||
@@ -584,7 +584,7 @@ type ViewField {
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
deletedAt: DateTime
|
||||
isOverridden: Boolean!
|
||||
isOverridden: Boolean @deprecated(reason: "isOverridden is deprecated")
|
||||
}
|
||||
|
||||
enum AggregateOperations {
|
||||
@@ -693,7 +693,7 @@ type ViewFieldGroup {
|
||||
updatedAt: DateTime!
|
||||
deletedAt: DateTime
|
||||
viewFields: [ViewField!]!
|
||||
isOverridden: Boolean!
|
||||
isOverridden: Boolean! @deprecated(reason: "isOverridden is deprecated")
|
||||
}
|
||||
|
||||
type View {
|
||||
@@ -899,7 +899,7 @@ type PageLayoutWidget {
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
deletedAt: DateTime
|
||||
isOverridden: Boolean!
|
||||
isOverridden: Boolean @deprecated(reason: "isOverridden is deprecated")
|
||||
}
|
||||
|
||||
enum WidgetType {
|
||||
@@ -1233,7 +1233,7 @@ type PageLayoutTab {
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
deletedAt: DateTime
|
||||
isOverridden: Boolean!
|
||||
isOverridden: Boolean @deprecated(reason: "isOverridden is deprecated")
|
||||
}
|
||||
|
||||
type PageLayout {
|
||||
@@ -1634,12 +1634,15 @@ type ClientAIModelConfig {
|
||||
modelFamily: ModelFamily
|
||||
modelFamilyLabel: String
|
||||
sdkPackage: String
|
||||
inputCostPerMillionTokensInCredits: Float!
|
||||
outputCostPerMillionTokensInCredits: Float!
|
||||
inputCostPerMillionTokens: Float
|
||||
outputCostPerMillionTokens: Float
|
||||
nativeCapabilities: NativeModelCapabilities
|
||||
isDeprecated: Boolean
|
||||
isRecommended: Boolean
|
||||
providerName: String
|
||||
providerLabel: String
|
||||
contextWindowTokens: Float
|
||||
maxOutputTokens: Float
|
||||
dataResidency: String
|
||||
}
|
||||
|
||||
@@ -2575,7 +2578,7 @@ type CommandMenuItem {
|
||||
position: Float!
|
||||
isPinned: Boolean!
|
||||
availabilityType: CommandMenuItemAvailabilityType!
|
||||
payload: JSON
|
||||
payload: CommandMenuItemPayload
|
||||
hotKeys: [String!]
|
||||
conditionalAvailabilityExpression: String
|
||||
availabilityObjectMetadataId: UUID
|
||||
@@ -2659,6 +2662,16 @@ enum CommandMenuItemAvailabilityType {
|
||||
FALLBACK
|
||||
}
|
||||
|
||||
union CommandMenuItemPayload = PathCommandMenuItemPayload | ObjectMetadataCommandMenuItemPayload
|
||||
|
||||
type PathCommandMenuItemPayload {
|
||||
path: String!
|
||||
}
|
||||
|
||||
type ObjectMetadataCommandMenuItemPayload {
|
||||
objectMetadataItemId: UUID!
|
||||
}
|
||||
|
||||
type ToolIndexEntry {
|
||||
name: String!
|
||||
description: String!
|
||||
@@ -2780,6 +2793,34 @@ type ConnectedAccountDTO {
|
||||
updatedAt: DateTime!
|
||||
}
|
||||
|
||||
type PublicConnectionParametersOutput {
|
||||
host: String!
|
||||
port: Float!
|
||||
username: String
|
||||
secure: Boolean
|
||||
}
|
||||
|
||||
type PublicImapSmtpCaldavConnectionParameters {
|
||||
IMAP: PublicConnectionParametersOutput
|
||||
SMTP: PublicConnectionParametersOutput
|
||||
CALDAV: PublicConnectionParametersOutput
|
||||
}
|
||||
|
||||
type ConnectedAccountPublicDTO {
|
||||
id: UUID!
|
||||
handle: String!
|
||||
provider: String!
|
||||
lastCredentialsRefreshedAt: DateTime
|
||||
authFailedAt: DateTime
|
||||
handleAliases: [String!]
|
||||
scopes: [String!]
|
||||
lastSignedInAt: DateTime
|
||||
userWorkspaceId: UUID!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
connectionParameters: PublicImapSmtpCaldavConnectionParameters
|
||||
}
|
||||
|
||||
type SendEmailOutput {
|
||||
success: Boolean!
|
||||
error: String
|
||||
@@ -3198,6 +3239,7 @@ type Query {
|
||||
myMessageFolders(messageChannelId: UUID): [MessageFolder!]!
|
||||
myMessageChannels(connectedAccountId: UUID): [MessageChannel!]!
|
||||
myConnectedAccounts: [ConnectedAccountDTO!]!
|
||||
connectedAccountById(id: UUID!): ConnectedAccountPublicDTO
|
||||
connectedAccounts: [ConnectedAccountDTO!]!
|
||||
myCalendarChannels(connectedAccountId: UUID): [CalendarChannel!]!
|
||||
webhooks: [Webhook!]!
|
||||
@@ -3342,6 +3384,7 @@ enum EventLogTable {
|
||||
PAGEVIEW
|
||||
OBJECT_EVENT
|
||||
USAGE_EVENT
|
||||
APPLICATION_LOG
|
||||
}
|
||||
|
||||
input EventLogFiltersInput {
|
||||
@@ -3461,6 +3504,7 @@ type Mutation {
|
||||
destroyPageLayout(id: String!): Boolean!
|
||||
updatePageLayoutWithTabsAndWidgets(id: String!, input: UpdatePageLayoutWithTabsInput!): PageLayout!
|
||||
resetPageLayoutWidgetToDefault(id: String!): PageLayoutWidget!
|
||||
resetPageLayoutTabToDefault(id: String!): PageLayoutTab!
|
||||
createPageLayoutWidget(input: CreatePageLayoutWidgetInput!): PageLayoutWidget!
|
||||
updatePageLayoutWidget(id: String!, input: UpdatePageLayoutWidgetInput!): PageLayoutWidget!
|
||||
destroyPageLayoutWidget(id: String!): Boolean!
|
||||
@@ -3568,7 +3612,9 @@ type Mutation {
|
||||
userLookupAdminPanel(userIdentifier: String!): UserLookup!
|
||||
updateWorkspaceFeatureFlag(workspaceId: UUID!, featureFlag: String!, value: Boolean!): Boolean!
|
||||
setAdminAiModelEnabled(modelId: String!, enabled: Boolean!): Boolean!
|
||||
setAdminAiModelsEnabled(modelIds: [String!]!, enabled: Boolean!): Boolean!
|
||||
setAdminAiModelRecommended(modelId: String!, recommended: Boolean!): Boolean!
|
||||
setAdminAiModelsRecommended(modelIds: [String!]!, recommended: Boolean!): Boolean!
|
||||
setAdminDefaultAiModel(role: AiModelRole!, modelId: String!): Boolean!
|
||||
createDatabaseConfigVariable(key: String!, value: JSON!): Boolean!
|
||||
updateDatabaseConfigVariable(key: String!, value: JSON!): Boolean!
|
||||
@@ -3985,6 +4031,7 @@ input CreatePageLayoutWidgetInput {
|
||||
}
|
||||
|
||||
input UpdatePageLayoutWidgetInput {
|
||||
pageLayoutTabId: UUID
|
||||
title: String
|
||||
type: WidgetType
|
||||
objectMetadataId: UUID
|
||||
|
||||
@@ -416,7 +416,8 @@ export interface ViewField {
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
isOverridden: Scalars['Boolean']
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: Scalars['Boolean']
|
||||
__typename: 'ViewField'
|
||||
}
|
||||
|
||||
@@ -493,6 +494,7 @@ export interface ViewFieldGroup {
|
||||
updatedAt: Scalars['DateTime']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
viewFields: ViewField[]
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden: Scalars['Boolean']
|
||||
__typename: 'ViewFieldGroup'
|
||||
}
|
||||
@@ -672,7 +674,8 @@ export interface PageLayoutWidget {
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
isOverridden: Scalars['Boolean']
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: Scalars['Boolean']
|
||||
__typename: 'PageLayoutWidget'
|
||||
}
|
||||
|
||||
@@ -956,7 +959,8 @@ export interface PageLayoutTab {
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
isOverridden: Scalars['Boolean']
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: Scalars['Boolean']
|
||||
__typename: 'PageLayoutTab'
|
||||
}
|
||||
|
||||
@@ -1341,12 +1345,15 @@ export interface ClientAIModelConfig {
|
||||
modelFamily?: ModelFamily
|
||||
modelFamilyLabel?: Scalars['String']
|
||||
sdkPackage?: Scalars['String']
|
||||
inputCostPerMillionTokensInCredits: Scalars['Float']
|
||||
outputCostPerMillionTokensInCredits: Scalars['Float']
|
||||
inputCostPerMillionTokens?: Scalars['Float']
|
||||
outputCostPerMillionTokens?: Scalars['Float']
|
||||
nativeCapabilities?: NativeModelCapabilities
|
||||
isDeprecated?: Scalars['Boolean']
|
||||
isRecommended?: Scalars['Boolean']
|
||||
providerName?: Scalars['String']
|
||||
providerLabel?: Scalars['String']
|
||||
contextWindowTokens?: Scalars['Float']
|
||||
maxOutputTokens?: Scalars['Float']
|
||||
dataResidency?: Scalars['String']
|
||||
__typename: 'ClientAIModelConfig'
|
||||
}
|
||||
@@ -2286,7 +2293,7 @@ export interface CommandMenuItem {
|
||||
position: Scalars['Float']
|
||||
isPinned: Scalars['Boolean']
|
||||
availabilityType: CommandMenuItemAvailabilityType
|
||||
payload?: Scalars['JSON']
|
||||
payload?: CommandMenuItemPayload
|
||||
hotKeys?: Scalars['String'][]
|
||||
conditionalAvailabilityExpression?: Scalars['String']
|
||||
availabilityObjectMetadataId?: Scalars['UUID']
|
||||
@@ -2300,6 +2307,18 @@ export type EngineComponentKey = 'NAVIGATE_TO_NEXT_RECORD' | 'NAVIGATE_TO_PREVIO
|
||||
|
||||
export type CommandMenuItemAvailabilityType = 'GLOBAL' | 'RECORD_SELECTION' | 'FALLBACK'
|
||||
|
||||
export type CommandMenuItemPayload = (PathCommandMenuItemPayload | ObjectMetadataCommandMenuItemPayload) & { __isUnion?: true }
|
||||
|
||||
export interface PathCommandMenuItemPayload {
|
||||
path: Scalars['String']
|
||||
__typename: 'PathCommandMenuItemPayload'
|
||||
}
|
||||
|
||||
export interface ObjectMetadataCommandMenuItemPayload {
|
||||
objectMetadataItemId: Scalars['UUID']
|
||||
__typename: 'ObjectMetadataCommandMenuItemPayload'
|
||||
}
|
||||
|
||||
export interface ToolIndexEntry {
|
||||
name: Scalars['String']
|
||||
description: Scalars['String']
|
||||
@@ -2433,6 +2452,37 @@ export interface ConnectedAccountDTO {
|
||||
__typename: 'ConnectedAccountDTO'
|
||||
}
|
||||
|
||||
export interface PublicConnectionParametersOutput {
|
||||
host: Scalars['String']
|
||||
port: Scalars['Float']
|
||||
username?: Scalars['String']
|
||||
secure?: Scalars['Boolean']
|
||||
__typename: 'PublicConnectionParametersOutput'
|
||||
}
|
||||
|
||||
export interface PublicImapSmtpCaldavConnectionParameters {
|
||||
IMAP?: PublicConnectionParametersOutput
|
||||
SMTP?: PublicConnectionParametersOutput
|
||||
CALDAV?: PublicConnectionParametersOutput
|
||||
__typename: 'PublicImapSmtpCaldavConnectionParameters'
|
||||
}
|
||||
|
||||
export interface ConnectedAccountPublicDTO {
|
||||
id: Scalars['UUID']
|
||||
handle: Scalars['String']
|
||||
provider: Scalars['String']
|
||||
lastCredentialsRefreshedAt?: Scalars['DateTime']
|
||||
authFailedAt?: Scalars['DateTime']
|
||||
handleAliases?: Scalars['String'][]
|
||||
scopes?: Scalars['String'][]
|
||||
lastSignedInAt?: Scalars['DateTime']
|
||||
userWorkspaceId: Scalars['UUID']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
connectionParameters?: PublicImapSmtpCaldavConnectionParameters
|
||||
__typename: 'ConnectedAccountPublicDTO'
|
||||
}
|
||||
|
||||
export interface SendEmailOutput {
|
||||
success: Scalars['Boolean']
|
||||
error?: Scalars['String']
|
||||
@@ -2759,6 +2809,7 @@ export interface Query {
|
||||
myMessageFolders: MessageFolder[]
|
||||
myMessageChannels: MessageChannel[]
|
||||
myConnectedAccounts: ConnectedAccountDTO[]
|
||||
connectedAccountById?: ConnectedAccountPublicDTO
|
||||
connectedAccounts: ConnectedAccountDTO[]
|
||||
myCalendarChannels: CalendarChannel[]
|
||||
webhooks: Webhook[]
|
||||
@@ -2829,7 +2880,7 @@ export type SortDirection = 'ASC' | 'DESC'
|
||||
/** Sort Nulls Options */
|
||||
export type SortNulls = 'NULLS_FIRST' | 'NULLS_LAST'
|
||||
|
||||
export type EventLogTable = 'WORKSPACE_EVENT' | 'PAGEVIEW' | 'OBJECT_EVENT' | 'USAGE_EVENT'
|
||||
export type EventLogTable = 'WORKSPACE_EVENT' | 'PAGEVIEW' | 'OBJECT_EVENT' | 'USAGE_EVENT' | 'APPLICATION_LOG'
|
||||
|
||||
export type UsageOperationType = 'AI_CHAT_TOKEN' | 'AI_WORKFLOW_TOKEN' | 'WORKFLOW_EXECUTION' | 'CODE_EXECUTION' | 'WEB_SEARCH'
|
||||
|
||||
@@ -2907,6 +2958,7 @@ export interface Mutation {
|
||||
destroyPageLayout: Scalars['Boolean']
|
||||
updatePageLayoutWithTabsAndWidgets: PageLayout
|
||||
resetPageLayoutWidgetToDefault: PageLayoutWidget
|
||||
resetPageLayoutTabToDefault: PageLayoutTab
|
||||
createPageLayoutWidget: PageLayoutWidget
|
||||
updatePageLayoutWidget: PageLayoutWidget
|
||||
destroyPageLayoutWidget: Scalars['Boolean']
|
||||
@@ -3014,7 +3066,9 @@ export interface Mutation {
|
||||
userLookupAdminPanel: UserLookup
|
||||
updateWorkspaceFeatureFlag: Scalars['Boolean']
|
||||
setAdminAiModelEnabled: Scalars['Boolean']
|
||||
setAdminAiModelsEnabled: Scalars['Boolean']
|
||||
setAdminAiModelRecommended: Scalars['Boolean']
|
||||
setAdminAiModelsRecommended: Scalars['Boolean']
|
||||
setAdminDefaultAiModel: Scalars['Boolean']
|
||||
createDatabaseConfigVariable: Scalars['Boolean']
|
||||
updateDatabaseConfigVariable: Scalars['Boolean']
|
||||
@@ -3513,6 +3567,7 @@ export interface ViewFieldGenqlSelection{
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
@@ -3587,6 +3642,7 @@ export interface ViewFieldGroupGenqlSelection{
|
||||
updatedAt?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
viewFields?: ViewFieldGenqlSelection
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
@@ -3758,6 +3814,7 @@ export interface PageLayoutWidgetGenqlSelection{
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
@@ -4069,6 +4126,7 @@ export interface PageLayoutTabGenqlSelection{
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
@@ -4461,12 +4519,15 @@ export interface ClientAIModelConfigGenqlSelection{
|
||||
modelFamily?: boolean | number
|
||||
modelFamilyLabel?: boolean | number
|
||||
sdkPackage?: boolean | number
|
||||
inputCostPerMillionTokensInCredits?: boolean | number
|
||||
outputCostPerMillionTokensInCredits?: boolean | number
|
||||
inputCostPerMillionTokens?: boolean | number
|
||||
outputCostPerMillionTokens?: boolean | number
|
||||
nativeCapabilities?: NativeModelCapabilitiesGenqlSelection
|
||||
isDeprecated?: boolean | number
|
||||
isRecommended?: boolean | number
|
||||
providerName?: boolean | number
|
||||
providerLabel?: boolean | number
|
||||
contextWindowTokens?: boolean | number
|
||||
maxOutputTokens?: boolean | number
|
||||
dataResidency?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
@@ -5486,7 +5547,7 @@ export interface CommandMenuItemGenqlSelection{
|
||||
position?: boolean | number
|
||||
isPinned?: boolean | number
|
||||
availabilityType?: boolean | number
|
||||
payload?: boolean | number
|
||||
payload?: CommandMenuItemPayloadGenqlSelection
|
||||
hotKeys?: boolean | number
|
||||
conditionalAvailabilityExpression?: boolean | number
|
||||
availabilityObjectMetadataId?: boolean | number
|
||||
@@ -5497,6 +5558,24 @@ export interface CommandMenuItemGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface CommandMenuItemPayloadGenqlSelection{
|
||||
on_PathCommandMenuItemPayload?:PathCommandMenuItemPayloadGenqlSelection,
|
||||
on_ObjectMetadataCommandMenuItemPayload?:ObjectMetadataCommandMenuItemPayloadGenqlSelection,
|
||||
__typename?: boolean | number
|
||||
}
|
||||
|
||||
export interface PathCommandMenuItemPayloadGenqlSelection{
|
||||
path?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ObjectMetadataCommandMenuItemPayloadGenqlSelection{
|
||||
objectMetadataItemId?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ToolIndexEntryGenqlSelection{
|
||||
name?: boolean | number
|
||||
description?: boolean | number
|
||||
@@ -5642,6 +5721,40 @@ export interface ConnectedAccountDTOGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface PublicConnectionParametersOutputGenqlSelection{
|
||||
host?: boolean | number
|
||||
port?: boolean | number
|
||||
username?: boolean | number
|
||||
secure?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface PublicImapSmtpCaldavConnectionParametersGenqlSelection{
|
||||
IMAP?: PublicConnectionParametersOutputGenqlSelection
|
||||
SMTP?: PublicConnectionParametersOutputGenqlSelection
|
||||
CALDAV?: PublicConnectionParametersOutputGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ConnectedAccountPublicDTOGenqlSelection{
|
||||
id?: boolean | number
|
||||
handle?: boolean | number
|
||||
provider?: boolean | number
|
||||
lastCredentialsRefreshedAt?: boolean | number
|
||||
authFailedAt?: boolean | number
|
||||
handleAliases?: boolean | number
|
||||
scopes?: boolean | number
|
||||
lastSignedInAt?: boolean | number
|
||||
userWorkspaceId?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
connectionParameters?: PublicImapSmtpCaldavConnectionParametersGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface SendEmailOutputGenqlSelection{
|
||||
success?: boolean | number
|
||||
error?: boolean | number
|
||||
@@ -5984,6 +6097,7 @@ export interface QueryGenqlSelection{
|
||||
myMessageFolders?: (MessageFolderGenqlSelection & { __args?: {messageChannelId?: (Scalars['UUID'] | null)} })
|
||||
myMessageChannels?: (MessageChannelGenqlSelection & { __args?: {connectedAccountId?: (Scalars['UUID'] | null)} })
|
||||
myConnectedAccounts?: ConnectedAccountDTOGenqlSelection
|
||||
connectedAccountById?: (ConnectedAccountPublicDTOGenqlSelection & { __args: {id: Scalars['UUID']} })
|
||||
connectedAccounts?: ConnectedAccountDTOGenqlSelection
|
||||
myCalendarChannels?: (CalendarChannelGenqlSelection & { __args?: {connectedAccountId?: (Scalars['UUID'] | null)} })
|
||||
webhooks?: WebhookGenqlSelection
|
||||
@@ -6157,6 +6271,7 @@ export interface MutationGenqlSelection{
|
||||
destroyPageLayout?: { __args: {id: Scalars['String']} }
|
||||
updatePageLayoutWithTabsAndWidgets?: (PageLayoutGenqlSelection & { __args: {id: Scalars['String'], input: UpdatePageLayoutWithTabsInput} })
|
||||
resetPageLayoutWidgetToDefault?: (PageLayoutWidgetGenqlSelection & { __args: {id: Scalars['String']} })
|
||||
resetPageLayoutTabToDefault?: (PageLayoutTabGenqlSelection & { __args: {id: Scalars['String']} })
|
||||
createPageLayoutWidget?: (PageLayoutWidgetGenqlSelection & { __args: {input: CreatePageLayoutWidgetInput} })
|
||||
updatePageLayoutWidget?: (PageLayoutWidgetGenqlSelection & { __args: {id: Scalars['String'], input: UpdatePageLayoutWidgetInput} })
|
||||
destroyPageLayoutWidget?: { __args: {id: Scalars['String']} }
|
||||
@@ -6264,7 +6379,9 @@ export interface MutationGenqlSelection{
|
||||
userLookupAdminPanel?: (UserLookupGenqlSelection & { __args: {userIdentifier: Scalars['String']} })
|
||||
updateWorkspaceFeatureFlag?: { __args: {workspaceId: Scalars['UUID'], featureFlag: Scalars['String'], value: Scalars['Boolean']} }
|
||||
setAdminAiModelEnabled?: { __args: {modelId: Scalars['String'], enabled: Scalars['Boolean']} }
|
||||
setAdminAiModelsEnabled?: { __args: {modelIds: Scalars['String'][], enabled: Scalars['Boolean']} }
|
||||
setAdminAiModelRecommended?: { __args: {modelId: Scalars['String'], recommended: Scalars['Boolean']} }
|
||||
setAdminAiModelsRecommended?: { __args: {modelIds: Scalars['String'][], recommended: Scalars['Boolean']} }
|
||||
setAdminDefaultAiModel?: { __args: {role: AiModelRole, modelId: Scalars['String']} }
|
||||
createDatabaseConfigVariable?: { __args: {key: Scalars['String'], value: Scalars['JSON']} }
|
||||
updateDatabaseConfigVariable?: { __args: {key: Scalars['String'], value: Scalars['JSON']} }
|
||||
@@ -6442,7 +6559,7 @@ export interface GridPositionInput {row: Scalars['Float'],column: Scalars['Float
|
||||
|
||||
export interface CreatePageLayoutWidgetInput {pageLayoutTabId: Scalars['UUID'],title: Scalars['String'],type: WidgetType,objectMetadataId?: (Scalars['UUID'] | null),gridPosition: GridPositionInput,position?: (Scalars['JSON'] | null),configuration: Scalars['JSON']}
|
||||
|
||||
export interface UpdatePageLayoutWidgetInput {title?: (Scalars['String'] | null),type?: (WidgetType | null),objectMetadataId?: (Scalars['UUID'] | null),gridPosition?: (GridPositionInput | null),position?: (Scalars['JSON'] | null),configuration?: (Scalars['JSON'] | null),conditionalDisplay?: (Scalars['JSON'] | null)}
|
||||
export interface UpdatePageLayoutWidgetInput {pageLayoutTabId?: (Scalars['UUID'] | null),title?: (Scalars['String'] | null),type?: (WidgetType | null),objectMetadataId?: (Scalars['UUID'] | null),gridPosition?: (GridPositionInput | null),position?: (Scalars['JSON'] | null),configuration?: (Scalars['JSON'] | null),conditionalDisplay?: (Scalars['JSON'] | null)}
|
||||
|
||||
export interface CreateLogicFunctionFromSourceInput {id?: (Scalars['UUID'] | null),universalIdentifier?: (Scalars['UUID'] | null),name: Scalars['String'],description?: (Scalars['String'] | null),timeoutSeconds?: (Scalars['Float'] | null),toolInputSchema?: (Scalars['JSON'] | null),isTool?: (Scalars['Boolean'] | null),source?: (Scalars['JSON'] | null),cronTriggerSettings?: (Scalars['JSON'] | null),databaseEventTriggerSettings?: (Scalars['JSON'] | null),httpRouteTriggerSettings?: (Scalars['JSON'] | null)}
|
||||
|
||||
@@ -8429,6 +8546,30 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const CommandMenuItemPayload_possibleTypes: string[] = ['PathCommandMenuItemPayload','ObjectMetadataCommandMenuItemPayload']
|
||||
export const isCommandMenuItemPayload = (obj?: { __typename?: any } | null): obj is CommandMenuItemPayload => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isCommandMenuItemPayload"')
|
||||
return CommandMenuItemPayload_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const PathCommandMenuItemPayload_possibleTypes: string[] = ['PathCommandMenuItemPayload']
|
||||
export const isPathCommandMenuItemPayload = (obj?: { __typename?: any } | null): obj is PathCommandMenuItemPayload => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isPathCommandMenuItemPayload"')
|
||||
return PathCommandMenuItemPayload_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const ObjectMetadataCommandMenuItemPayload_possibleTypes: string[] = ['ObjectMetadataCommandMenuItemPayload']
|
||||
export const isObjectMetadataCommandMenuItemPayload = (obj?: { __typename?: any } | null): obj is ObjectMetadataCommandMenuItemPayload => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isObjectMetadataCommandMenuItemPayload"')
|
||||
return ObjectMetadataCommandMenuItemPayload_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const ToolIndexEntry_possibleTypes: string[] = ['ToolIndexEntry']
|
||||
export const isToolIndexEntry = (obj?: { __typename?: any } | null): obj is ToolIndexEntry => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isToolIndexEntry"')
|
||||
@@ -8525,6 +8666,30 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const PublicConnectionParametersOutput_possibleTypes: string[] = ['PublicConnectionParametersOutput']
|
||||
export const isPublicConnectionParametersOutput = (obj?: { __typename?: any } | null): obj is PublicConnectionParametersOutput => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isPublicConnectionParametersOutput"')
|
||||
return PublicConnectionParametersOutput_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const PublicImapSmtpCaldavConnectionParameters_possibleTypes: string[] = ['PublicImapSmtpCaldavConnectionParameters']
|
||||
export const isPublicImapSmtpCaldavConnectionParameters = (obj?: { __typename?: any } | null): obj is PublicImapSmtpCaldavConnectionParameters => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isPublicImapSmtpCaldavConnectionParameters"')
|
||||
return PublicImapSmtpCaldavConnectionParameters_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const ConnectedAccountPublicDTO_possibleTypes: string[] = ['ConnectedAccountPublicDTO']
|
||||
export const isConnectedAccountPublicDTO = (obj?: { __typename?: any } | null): obj is ConnectedAccountPublicDTO => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isConnectedAccountPublicDTO"')
|
||||
return ConnectedAccountPublicDTO_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const SendEmailOutput_possibleTypes: string[] = ['SendEmailOutput']
|
||||
export const isSendEmailOutput = (obj?: { __typename?: any } | null): obj is SendEmailOutput => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isSendEmailOutput"')
|
||||
@@ -9454,7 +9619,8 @@ export const enumEventLogTable = {
|
||||
WORKSPACE_EVENT: 'WORKSPACE_EVENT' as const,
|
||||
PAGEVIEW: 'PAGEVIEW' as const,
|
||||
OBJECT_EVENT: 'OBJECT_EVENT' as const,
|
||||
USAGE_EVENT: 'USAGE_EVENT' as const
|
||||
USAGE_EVENT: 'USAGE_EVENT' as const,
|
||||
APPLICATION_LOG: 'APPLICATION_LOG' as const
|
||||
}
|
||||
|
||||
export const enumUsageOperationType = {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -66,12 +66,18 @@ The share link uses the server's base URL (without any workspace subdomain) so i
|
||||
|
||||
### Version management
|
||||
|
||||
When updating an already deployed tarball app, the server requires the `version` in `package.json` to be **strictly higher** (per [semver](https://semver.org) ordering) than the currently deployed version. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
To release an update:
|
||||
|
||||
1. Bump the `version` field in your `package.json`
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. Run `yarn twenty deploy` (or `yarn twenty deploy --remote production`)
|
||||
3. Workspaces that have the app installed will see the upgrade available in their settings
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## Publishing to npm
|
||||
@@ -189,3 +195,12 @@ You can also install apps from the command line:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
- Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
- Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -100,16 +100,16 @@ yarn twenty dev --verbose
|
||||
|
||||
#### مزامنة لمرة واحدة باستخدام `yarn twenty dev --once`
|
||||
|
||||
إذا كنت لا تريد تشغيل مُراقِب في الخلفية (على سبيل المثال في خط أنابيب CI، أو git hook، أو سير عمل مكتوب بسكربت)، فمرِّر العلم `--once`. يُشغِّل خط الأنابيب نفسه مثل `yarn twenty dev` — إنشاء بيان البناء، تجميع الملفات، الرفع، المزامنة، إعادة توليد عميل API مضبوط الأنواع — ولكنه **ينهي التنفيذ فور اكتمال المزامنة**:
|
||||
إذا كنت لا تريد تشغيل مراقب في الخلفية (مثلًا في خط أنابيب CI، أو خطاف Git، أو سير عمل مُؤتمت عبر سكربت)، فمرِّر الخيار `--once`. يُشغِّل خط الأنابيب نفسه مثل `yarn twenty dev` — إنشاء بيان البناء، تجميع الملفات، الرفع، المزامنة، إعادة توليد عميل API مضبوط الأنواع — ولكنه **ينهي التنفيذ فور اكتمال المزامنة**:
|
||||
|
||||
```bash filename="Terminal"
|
||||
yarn twenty dev --once
|
||||
```
|
||||
|
||||
| أمر | السلوك | متى يُستخدم |
|
||||
| ------------------------ | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | يراقب ملفات المصدر ويعيد المزامنة عند كل تغيير. يستمر بالتشغيل حتى توقفه. | تطوير محلي تفاعلي — تريد لوحة حالة مباشرة وحلقة تغذية راجعة فورية. |
|
||||
| `yarn twenty dev --once` | يجري عملية بناء واحدة + مزامنة واحدة، ثم ينهي التنفيذ برمز `0` عند النجاح أو `1` عند الفشل. | البرامج النصية، وCI، وpre-commit hooks، ووكلاء الذكاء الاصطناعي، وأي سير عمل غير تفاعلي. |
|
||||
| أمر | السلوك | متى يُستخدم |
|
||||
| ------------------------ | ------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | يراقب ملفات المصدر ويعيد المزامنة عند كل تغيير. يستمر بالتشغيل حتى توقفه. | تطوير محلي تفاعلي — تريد لوحة حالة مباشرة وحلقة تغذية راجعة فورية. |
|
||||
| `yarn twenty dev --once` | يجري عملية بناء واحدة + مزامنة واحدة، ثم ينهي التنفيذ برمز `0` عند النجاح أو `1` عند الفشل. | البرامج النصية، وCI، وخطافات ما قبل الالتزام، ووكلاء الذكاء الاصطناعي، وأي سير عمل غير تفاعلي. |
|
||||
|
||||
كلا الوضعين يتطلبان خادم Twenty يعمل في وضع التطوير وجهة بعيدة موثَّقة — تنطبق المتطلبات المسبقة نفسها.
|
||||
|
||||
|
||||
@@ -66,12 +66,18 @@ yarn twenty deploy
|
||||
|
||||
### إدارة الإصدارات
|
||||
|
||||
عند تحديث تطبيق tarball منشور مسبقًا، يشترط الخادم أن تكون قيمة `version` في `package.json` **أعلى قطعًا** (وفق ترتيب [الإصدار الدلالي](https://semver.org)) من الإصدار المنشور حاليًا. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
لطرح تحديث:
|
||||
|
||||
1. ارفع قيمة الحقل `version` في ملف `package.json`
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. شغّل `yarn twenty deploy` (أو `yarn twenty deploy --remote production`)
|
||||
3. سترى مساحات العمل التي ثبّتت التطبيق الترقية متاحة في إعداداتها
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## النشر على npm
|
||||
@@ -189,3 +195,12 @@ jobs:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
* Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
* Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -140,12 +140,12 @@ description: دليل شامل لاستكشاف أخطاء استيراد CSV و
|
||||
#### تاريخ
|
||||
|
||||
**المشكلة:** تنسيق تاريخ غير معروف
|
||||
**الحل:** استخدم تنسيقًا متّسقًا في جميع أنحاء الملف
|
||||
**الحل:** استخدم تنسيق `YYYY-MM-DD` بشكل متّسق في جميع أنحاء الملف
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - recommended)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### هاتف
|
||||
|
||||
@@ -103,8 +103,6 @@ description: دليل كامل خطوة بخطوة لتنسيق بياناتك
|
||||
استخدم تنسيقًا موحدًا في كامل ملفك:
|
||||
|
||||
* `YYYY-MM-DD` (مُوصى به): `2024-03-15`
|
||||
* `MM/DD/YYYY`: `03/15/2024`
|
||||
* `DD/MM/YYYY`: `15/03/2024`
|
||||
* ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### حقول الأرقام
|
||||
|
||||
@@ -106,10 +106,10 @@ Pokud nechcete, aby na pozadí běžel watcher (například v CI pipeline, git h
|
||||
yarn twenty dev --once
|
||||
```
|
||||
|
||||
| Příkaz | Chování | Kdy použít |
|
||||
| ------------------------ | -------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Sleduje vaše zdrojové soubory a při každé změně znovu spustí synchronizaci. Zůstává spuštěný, dokud jej nezastavíte. | Interaktivní lokální vývoj — chcete živý panel stavu a okamžitou zpětnou vazbu. |
|
||||
| `yarn twenty dev --once` | Provede jedno sestavení + synchronizaci, poté ukončí běh s kódem `0` při úspěchu nebo `1` při neúspěchu. | Skripty, CI, pre-commit hooky, AI agenti a jakýkoli neinteraktivní workflow. |
|
||||
| Příkaz | Chování | Kdy použít |
|
||||
| ------------------------ | -------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Sleduje vaše zdrojové soubory a při každé změně znovu spustí synchronizaci. Zůstává spuštěný, dokud jej nezastavíte. | Interaktivní lokální vývoj — chcete živý panel stavu a okamžitou zpětnovazebnou smyčku. |
|
||||
| `yarn twenty dev --once` | Provede jedno sestavení + synchronizaci, poté ukončí běh s kódem `0` při úspěchu nebo `1` při neúspěchu. | Skripty, CI, pre-commit hooky, AI agenti a jakýkoli neinteraktivní pracovní postup. |
|
||||
|
||||
Oba režimy vyžadují server Twenty běžící v režimu vývoje a autentizovaný remote — platí stejné požadavky.
|
||||
|
||||
|
||||
@@ -66,12 +66,18 @@ Odkaz ke sdílení používá základní adresu URL serveru (bez jakékoli subdo
|
||||
|
||||
### Správa verzí
|
||||
|
||||
Při aktualizaci již nasazené tarballové aplikace server vyžaduje, aby hodnota `version` v `package.json` byla **přísně vyšší** (podle řazení [semver](https://semver.org)) než aktuálně nasazená verze. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
Chcete-li vydat aktualizaci:
|
||||
|
||||
1. Zvyšte hodnotu pole `version` v souboru `package.json`
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. Spusťte `yarn twenty deploy` (nebo `yarn twenty deploy --remote production`)
|
||||
3. Pracovní prostory, které mají aplikaci nainstalovanou, uvidí dostupnou aktualizaci ve svém nastavení
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## Publikování na npm
|
||||
@@ -189,3 +195,12 @@ Aplikace můžete nainstalovat také z příkazového řádku:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
* Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
* Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -140,12 +140,12 @@ Data neodpovídají očekávanému formátu pro tento typ pole.
|
||||
#### Datum
|
||||
|
||||
**Problém:** Nerozpoznaný formát data
|
||||
**Řešení:** Používejte jednotný formát v celém souboru
|
||||
**Řešení:** Používejte formát `YYYY-MM-DD` jednotně v celém souboru
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - recommended)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### Telefon
|
||||
|
||||
@@ -103,8 +103,6 @@ Adresa je **vnořené pole** s více sloupci (některé mohou zůstat prázdné)
|
||||
Používejte jednotný formát v celém souboru:
|
||||
|
||||
* `YYYY-MM-DD` (doporučeno): `2024-03-15`
|
||||
* `MM/DD/YYYY`: `03/15/2024`
|
||||
* `DD/MM/YYYY`: `15/03/2024`
|
||||
* ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### Číselná pole
|
||||
|
||||
@@ -98,20 +98,20 @@ Der Dev-Modus ist nur auf Twenty-Instanzen verfügbar, die im Entwicklungsmodus
|
||||
<img src="/images/docs/developers/extends/apps/dev.jpg" alt="Terminalausgabe im Dev-Modus" />
|
||||
</div>
|
||||
|
||||
#### One-shot sync with `yarn twenty dev --once`
|
||||
#### Einmalige Synchronisierung mit `yarn twenty dev --once`
|
||||
|
||||
If you do not want a watcher running in the background (for example in a CI pipeline, a git hook, or a scripted workflow), pass the `--once` flag. It runs the same pipeline as `yarn twenty dev` — build manifest, bundle files, upload, sync, regenerate the typed API client — but **exits as soon as the sync completes**:
|
||||
Wenn Sie keinen Watcher im Hintergrund ausführen lassen möchten (zum Beispiel in einer CI-Pipeline, einem Git-Hook oder einem skriptgesteuerten Workflow), geben Sie das Flag `--once` an. Es führt dieselbe Pipeline aus wie `yarn twenty dev` — Build-Manifest erstellen, Dateien bündeln, hochladen, synchronisieren, den typisierten API-Client neu generieren — beendet sich jedoch, **sobald die Synchronisierung abgeschlossen ist**:
|
||||
|
||||
```bash filename="Terminal"
|
||||
yarn twenty dev --once
|
||||
```
|
||||
|
||||
| Befehl | Verhalten | When to use |
|
||||
| ------------------------ | ---------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Watches your source files and re-syncs on every change. Keeps running until you stop it. | Interactive local development — you want the live status panel and instant feedback loop. |
|
||||
| `yarn twenty dev --once` | Performs a single build + sync, then exits with code `0` on success or `1` on failure. | Scripts, CI, pre-commit hooks, AI agents, and any non-interactive workflow. |
|
||||
| Befehl | Verhalten | Wann verwenden |
|
||||
| ------------------------ | ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Überwacht Ihre Quelldateien und synchronisiert bei jeder Änderung erneut. Läuft weiter, bis Sie es stoppen. | Interaktive lokale Entwicklung — Sie möchten das Live-Status-Panel und eine sofortige Feedback-Schleife. |
|
||||
| `yarn twenty dev --once` | Führt einen einzelnen Build + Sync aus und beendet sich anschließend mit Code `0` bei Erfolg oder `1` bei einem Fehler. | Skripte, CI, Pre-Commit-Hooks, KI-Agenten und jeder nicht-interaktive Workflow. |
|
||||
|
||||
Both modes require a Twenty server running in development mode and an authenticated remote — the same prerequisites apply.
|
||||
Beide Modi erfordern einen Twenty-Server, der im Entwicklungsmodus läuft, und ein authentifiziertes Remote — es gelten dieselben Voraussetzungen.
|
||||
|
||||
### Sehen Sie sich Ihre App in Twenty an
|
||||
|
||||
|
||||
@@ -66,12 +66,18 @@ Der Freigabelink verwendet die Basis-URL des Servers (ohne Workspace-Subdomain),
|
||||
|
||||
### Versionsverwaltung
|
||||
|
||||
Beim Aktualisieren einer bereits bereitgestellten Tarball-App verlangt der Server, dass die `version` in `package.json` **strikt höher** (gemäß der [semver](https://semver.org)-Reihenfolge) ist als die derzeit bereitgestellte Version. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
So veröffentlichen Sie ein Update:
|
||||
|
||||
1. Erhöhen Sie das Feld `version` in Ihrer `package.json`
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. Führen Sie `yarn twenty deploy` aus (oder `yarn twenty deploy --remote production`)
|
||||
3. Arbeitsbereiche, die die App installiert haben, sehen in ihren Einstellungen, dass ein Upgrade verfügbar ist.
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## Auf npm veröffentlichen
|
||||
@@ -189,3 +195,12 @@ Sie können Apps auch über die Befehlszeile installieren:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
* Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
* Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -140,12 +140,12 @@ Die Daten entsprechen nicht dem erwarteten Format für diesen Feldtyp.
|
||||
#### Datum
|
||||
|
||||
**Problem:** Nicht erkanntes Datumsformat
|
||||
**Lösung:** Verwenden Sie in der gesamten Datei ein einheitliches Format
|
||||
**Lösung:** Verwenden Sie in der gesamten Datei durchgängig das Format `YYYY-MM-DD`
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - empfohlen)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### Telefon
|
||||
|
||||
@@ -103,8 +103,6 @@ Adresse ist ein **verschachteltes Feld** mit mehreren Spalten (einige können le
|
||||
Verwenden Sie in Ihrer Datei ein einheitliches Format:
|
||||
|
||||
* `YYYY-MM-DD` (empfohlen): `2024-03-15`
|
||||
* `MM/DD/YYYY`: `03/15/2024`
|
||||
* `DD/MM/YYYY`: `15/03/2024`
|
||||
* ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### Zahlenfelder
|
||||
|
||||
@@ -98,20 +98,20 @@ La modalità di sviluppo è disponibile solo sulle istanze di Twenty in esecuzio
|
||||
<img src="/images/docs/developers/extends/apps/dev.jpg" alt="Output del terminale in modalità sviluppo" />
|
||||
</div>
|
||||
|
||||
#### One-shot sync with `yarn twenty dev --once`
|
||||
#### Sincronizzazione una tantum con `yarn twenty dev --once`
|
||||
|
||||
If you do not want a watcher running in the background (for example in a CI pipeline, a git hook, or a scripted workflow), pass the `--once` flag. It runs the same pipeline as `yarn twenty dev` — build manifest, bundle files, upload, sync, regenerate the typed API client — but **exits as soon as the sync completes**:
|
||||
Se non vuoi un watcher in esecuzione in background (ad esempio in una pipeline CI, un hook di Git o un flusso di lavoro scriptato), passa il flag `--once`. Esegue la stessa pipeline di `yarn twenty dev` — genera il manifest, effettua il bundling dei file, carica, sincronizza, rigenera il client API tipizzato — ma **termina non appena la sincronizzazione è completata**:
|
||||
|
||||
```bash filename="Terminal"
|
||||
yarn twenty dev --once
|
||||
```
|
||||
|
||||
| Comando | Comportamento | When to use |
|
||||
| ------------------------ | ---------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Watches your source files and re-syncs on every change. Keeps running until you stop it. | Interactive local development — you want the live status panel and instant feedback loop. |
|
||||
| `yarn twenty dev --once` | Performs a single build + sync, then exits with code `0` on success or `1` on failure. | Scripts, CI, pre-commit hooks, AI agents, and any non-interactive workflow. |
|
||||
| Comando | Comportamento | Quando usarlo |
|
||||
| ------------------------ | ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Monitora i file sorgente e risincronizza a ogni modifica. Rimane in esecuzione finché non lo interrompi. | Sviluppo locale interattivo — vuoi il pannello di stato in tempo reale e un ciclo di feedback immediato. |
|
||||
| `yarn twenty dev --once` | Esegue una singola build + sincronizzazione, quindi termina con codice `0` in caso di successo o `1` in caso di errore. | Script, CI, hook pre-commit, agenti IA e qualsiasi flusso di lavoro non interattivo. |
|
||||
|
||||
Both modes require a Twenty server running in development mode and an authenticated remote — the same prerequisites apply.
|
||||
Entrambe le modalità richiedono un server Twenty in esecuzione in modalità di sviluppo e un remote autenticato — si applicano gli stessi prerequisiti.
|
||||
|
||||
### Visualizza la tua app in Twenty
|
||||
|
||||
|
||||
@@ -66,12 +66,18 @@ Il link di condivisione utilizza l'URL di base del server (senza alcun sottodomi
|
||||
|
||||
### Gestione delle versioni
|
||||
|
||||
Quando si aggiorna un'app in formato tarball già distribuita, il server richiede che la `version` in `package.json` sia **strettamente superiore** (per l'ordinamento [semver](https://semver.org)) rispetto alla versione attualmente distribuita. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
Per rilasciare un aggiornamento:
|
||||
|
||||
1. Incrementa il campo `version` nel tuo `package.json`
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. Esegui `yarn twenty deploy` (oppure `yarn twenty deploy --remote production`)
|
||||
3. Gli spazi di lavoro che hanno l'app installata vedranno l'aggiornamento disponibile nelle proprie impostazioni
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## Pubblicazione su npm
|
||||
@@ -189,3 +195,12 @@ Puoi anche installare le app dalla riga di comando:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
* Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
* Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -140,12 +140,12 @@ I dati non corrispondono al formato previsto per quel tipo di campo.
|
||||
#### Data
|
||||
|
||||
**Problema:** formato data non riconosciuto
|
||||
**Soluzione:** usa un formato coerente in tutto il file
|
||||
**Soluzione:** Usa il formato `YYYY-MM-DD` in modo coerente in tutto il file
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - recommended)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### Telefono
|
||||
|
||||
@@ -103,8 +103,6 @@ Indirizzo è un **campo annidato** con più colonne (alcune possono essere lasci
|
||||
Usa un formato coerente in tutto il file:
|
||||
|
||||
* `YYYY-MM-DD` (consigliato): `2024-03-15`
|
||||
* `MM/DD/YYYY`: `03/15/2024`
|
||||
* `DD/MM/YYYY`: `15/03/2024`
|
||||
* ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### Campi numerici
|
||||
|
||||
@@ -98,20 +98,20 @@ O modo de desenvolvimento só está disponível em instâncias do Twenty em modo
|
||||
<img src="/images/docs/developers/extends/apps/dev.jpg" alt="Saída do terminal no modo de desenvolvimento" />
|
||||
</div>
|
||||
|
||||
#### One-shot sync with `yarn twenty dev --once`
|
||||
#### Sincronização única com `yarn twenty dev --once`
|
||||
|
||||
If you do not want a watcher running in the background (for example in a CI pipeline, a git hook, or a scripted workflow), pass the `--once` flag. It runs the same pipeline as `yarn twenty dev` — build manifest, bundle files, upload, sync, regenerate the typed API client — but **exits as soon as the sync completes**:
|
||||
Se você não quiser um monitor em execução em segundo plano (por exemplo, em um pipeline de CI, um hook do git ou um fluxo de trabalho com script), passe a flag `--once`. Ele executa o mesmo pipeline que `yarn twenty dev` — gerar o manifesto, empacotar arquivos, fazer upload, sincronizar, regenerar o cliente de API tipado — mas **encerra assim que a sincronização for concluída**:
|
||||
|
||||
```bash filename="Terminal"
|
||||
yarn twenty dev --once
|
||||
```
|
||||
|
||||
| Comando | Comportamento | When to use |
|
||||
| ------------------------ | ---------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Watches your source files and re-syncs on every change. Keeps running until you stop it. | Interactive local development — you want the live status panel and instant feedback loop. |
|
||||
| `yarn twenty dev --once` | Performs a single build + sync, then exits with code `0` on success or `1` on failure. | Scripts, CI, pre-commit hooks, AI agents, and any non-interactive workflow. |
|
||||
| Comando | Comportamento | Quando usar |
|
||||
| ------------------------ | -------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Monitora seus arquivos-fonte e ressincroniza a cada alteração. Continua em execução até você interrompê-lo. | Desenvolvimento local interativo — você quer o painel de status em tempo real e um ciclo de feedback instantâneo. |
|
||||
| `yarn twenty dev --once` | Executa uma única compilação + sincronização e, em seguida, encerra com o código `0` em caso de sucesso ou `1` em caso de falha. | Scripts, CI, hooks de pre-commit, agentes de IA e qualquer fluxo de trabalho não interativo. |
|
||||
|
||||
Both modes require a Twenty server running in development mode and an authenticated remote — the same prerequisites apply.
|
||||
Ambos os modos exigem um servidor Twenty em execução no modo de desenvolvimento e um remoto autenticado — aplicam-se os mesmos pré-requisitos.
|
||||
|
||||
### Veja seu aplicativo no Twenty
|
||||
|
||||
|
||||
@@ -66,12 +66,18 @@ O link de compartilhamento usa a URL base do servidor (sem qualquer subdomínio
|
||||
|
||||
### Gerenciamento de versões
|
||||
|
||||
Ao atualizar um aplicativo empacotado como tarball já implantado, o servidor exige que o `version` no `package.json` seja **estritamente maior** (de acordo com a ordenação do [semver](https://semver.org)) do que a versão atualmente implantada. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
Para lançar uma atualização:
|
||||
|
||||
1. Atualize o campo `version` no seu `package.json`
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. Execute `yarn twenty deploy` (ou `yarn twenty deploy --remote production`)
|
||||
3. Os espaços de trabalho que têm o aplicativo instalado verão a atualização disponível em suas configurações
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## Publicação no npm
|
||||
@@ -189,3 +195,12 @@ Você também pode instalar apps pela linha de comando:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
* Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
* Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -140,12 +140,12 @@ Os dados não correspondem ao formato esperado para esse tipo de campo.
|
||||
#### Data
|
||||
|
||||
**Problema:** Formato de data não reconhecido
|
||||
**Solução:** Use um formato consistente em todo o ficheiro
|
||||
**Solução:** Use o formato `YYYY-MM-DD` de forma consistente em todo o ficheiro
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - recomendado)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### Telefone
|
||||
|
||||
@@ -103,8 +103,6 @@ Endereço é um **campo aninhado** com várias colunas (algumas podem ficar em b
|
||||
Use formatação consistente em todo o seu arquivo:
|
||||
|
||||
* `YYYY-MM-DD` (recomendado): `2024-03-15`
|
||||
* `MM/DD/YYYY`: `03/15/2024`
|
||||
* `DD/MM/YYYY`: `15/03/2024`
|
||||
* ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### Campos Numéricos
|
||||
|
||||
@@ -98,20 +98,20 @@ yarn twenty dev --verbose
|
||||
<img src="/images/docs/developers/extends/apps/dev.jpg" alt="Вывод терминала в режиме разработки" />
|
||||
</div>
|
||||
|
||||
#### One-shot sync with `yarn twenty dev --once`
|
||||
#### Разовая синхронизация с `yarn twenty dev --once`
|
||||
|
||||
If you do not want a watcher running in the background (for example in a CI pipeline, a git hook, or a scripted workflow), pass the `--once` flag. It runs the same pipeline as `yarn twenty dev` — build manifest, bundle files, upload, sync, regenerate the typed API client — but **exits as soon as the sync completes**:
|
||||
Если вы не хотите, чтобы в фоновом режиме работал наблюдатель (например, в конвейере CI, хуке Git или скриптовом рабочем процессе), передайте флаг `--once`. Он запускает тот же конвейер, что и `yarn twenty dev` — собирает манифест, упаковывает файлы, загружает, синхронизирует, повторно генерирует типизированный клиент API — но **выходит сразу после завершения синхронизации**:
|
||||
|
||||
```bash filename="Terminal"
|
||||
yarn twenty dev --once
|
||||
```
|
||||
|
||||
| Команда | Поведение | When to use |
|
||||
| ------------------------ | ---------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Watches your source files and re-syncs on every change. Keeps running until you stop it. | Interactive local development — you want the live status panel and instant feedback loop. |
|
||||
| `yarn twenty dev --once` | Performs a single build + sync, then exits with code `0` on success or `1` on failure. | Scripts, CI, pre-commit hooks, AI agents, and any non-interactive workflow. |
|
||||
| Команда | Поведение | Когда использовать |
|
||||
| ------------------------ | ------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Отслеживает ваши исходные файлы и повторно синхронизирует при каждом изменении. Продолжает работать, пока вы его не остановите. | Интерактивная локальная разработка — вам нужна панель статуса в реальном времени и мгновенная обратная связь. |
|
||||
| `yarn twenty dev --once` | Выполняет одну сборку и синхронизацию, затем завершает работу с кодом `0` при успехе или `1` при ошибке. | Скрипты, CI, хуки pre-commit, AI-агенты и любые неинтерактивные рабочие процессы. |
|
||||
|
||||
Both modes require a Twenty server running in development mode and an authenticated remote — the same prerequisites apply.
|
||||
Оба режима требуют сервер Twenty, запущенный в режиме разработки, и аутентифицированный удалённый ресурс — действуют те же предварительные требования.
|
||||
|
||||
### Посмотрите своё приложение в Twenty
|
||||
|
||||
|
||||
@@ -66,12 +66,18 @@ yarn twenty deploy
|
||||
|
||||
### Управление версиями
|
||||
|
||||
When updating an already deployed tarball app, the server requires the `version` in `package.json` to be **strictly higher** (per [semver](https://semver.org) ordering) than the currently deployed version. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
Чтобы выпустить обновление:
|
||||
|
||||
1. Обновите значение поля `version` в файле `package.json`
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. Выполните `yarn twenty deploy` (или `yarn twenty deploy --remote production`)
|
||||
3. Рабочие пространства, в которых установлено приложение, увидят доступное обновление в своих настройках
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## Публикация в npm
|
||||
@@ -189,3 +195,12 @@ jobs:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
* Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
* Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -140,12 +140,12 @@ description: Полное руководство по устранению ош
|
||||
#### Дата
|
||||
|
||||
**Проблема:** Нераспознанный формат даты
|
||||
**Решение:** Используйте единый формат по всему файлу
|
||||
**Решение:** Используйте формат `YYYY-MM-DD` последовательно по всему файлу
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - recommended)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### Телефон
|
||||
|
||||
@@ -103,8 +103,6 @@ Twenty требует уникальности для некоторых пол
|
||||
Используйте единый формат по всему файлу:
|
||||
|
||||
* `YYYY-MM-DD` (рекомендуется): `2024-03-15`
|
||||
* `MM/DD/YYYY`: `03/15/2024`
|
||||
* `DD/MM/YYYY`: `15/03/2024`
|
||||
* ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### Числовые поля
|
||||
|
||||
@@ -98,20 +98,20 @@ Geliştirme modu yalnızca geliştirme ortamında (`NODE_ENV=development`) çal
|
||||
<img src="/images/docs/developers/extends/apps/dev.jpg" alt="Geliştirme modu terminal çıktısı" />
|
||||
</div>
|
||||
|
||||
#### One-shot sync with `yarn twenty dev --once`
|
||||
#### Tek seferlik eşitleme `yarn twenty dev --once` ile
|
||||
|
||||
If you do not want a watcher running in the background (for example in a CI pipeline, a git hook, or a scripted workflow), pass the `--once` flag. It runs the same pipeline as `yarn twenty dev` — build manifest, bundle files, upload, sync, regenerate the typed API client — but **exits as soon as the sync completes**:
|
||||
Arka planda bir izleyicinin çalışmasını istemiyorsanız (örneğin bir CI ardışık düzeni içinde, bir git hook veya betik tabanlı bir iş akışı içinde), `--once` bayrağını belirtin. `yarn twenty dev` ile aynı ardışık düzeni çalıştırır — derleme manifestosunu oluşturur, dosyaları paketler, yükler, eşitler, tiplendirilmiş API istemcisini yeniden oluşturur — ancak **eşitleme tamamlanır tamamlanmaz çıkış yapar**:
|
||||
|
||||
```bash filename="Terminal"
|
||||
yarn twenty dev --once
|
||||
```
|
||||
|
||||
| Komut | Davranış | When to use |
|
||||
| ------------------------ | ---------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Watches your source files and re-syncs on every change. Keeps running until you stop it. | Interactive local development — you want the live status panel and instant feedback loop. |
|
||||
| `yarn twenty dev --once` | Performs a single build + sync, then exits with code `0` on success or `1` on failure. | Scripts, CI, pre-commit hooks, AI agents, and any non-interactive workflow. |
|
||||
| Komut | Davranış | Ne zaman kullanılmalı |
|
||||
| ------------------------ | ----------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------- |
|
||||
| `yarn twenty dev` | Kaynak dosyalarınızı izler ve her değişiklikte yeniden eşitler. Siz durdurana kadar çalışmaya devam eder. | Etkileşimli yerel geliştirme — canlı durum paneli ve anlık geri bildirim döngüsü istersiniz. |
|
||||
| `yarn twenty dev --once` | Tek bir derleme + eşitleme gerçekleştirir, ardından başarı durumunda `0` veya başarısızlık durumunda `1` koduyla çıkar. | Betikler, CI, pre-commit hooks, AI ajanları ve etkileşimsiz herhangi bir iş akışı. |
|
||||
|
||||
Both modes require a Twenty server running in development mode and an authenticated remote — the same prerequisites apply.
|
||||
Her iki mod da geliştirme modunda çalışan bir Twenty sunucusu ve kimliği doğrulanmış bir uzak gerektirir — aynı önkoşullar geçerlidir.
|
||||
|
||||
### Uygulamanızı Twenty'de görün
|
||||
|
||||
|
||||
@@ -66,12 +66,18 @@ Paylaşım bağlantısı, sunucunun temel URL’sini (herhangi bir çalışma al
|
||||
|
||||
### Sürüm yönetimi
|
||||
|
||||
Halihazırda dağıtılmış bir tarball uygulamasını güncellerken, sunucu `package.json` içindeki `version` değerinin, şu anda dağıtılmış sürümden ([semver](https://semver.org) sıralamasına göre) **kesinlikle daha yüksek** olmasını gerektirir. Re-deploying the same version, or pushing a lower one, is rejected before the tarball is stored — you'll see a `VERSION_ALREADY_EXISTS` error from the CLI.
|
||||
|
||||
Bir güncelleme yayımlamak için:
|
||||
|
||||
1. `package.json` içindeki `version` alanını artırın
|
||||
1. Bump the `version` field in your `package.json` (e.g. `1.2.3` → `1.2.4`, `1.3.0`, or `2.0.0`)
|
||||
2. `yarn twenty deploy` (veya `yarn twenty deploy --remote production`) komutunu çalıştırın
|
||||
3. Uygulamayı kurmuş olan çalışma alanları, ayarlarında mevcut güncellemeyi görecektir
|
||||
|
||||
<Note>
|
||||
Pre-release tags work as expected: bumping `1.0.0-rc.1` → `1.0.0-rc.2` is allowed, and a final release like `1.0.0` is correctly recognized as higher than `1.0.0-rc.5`. The version in `package.json` must itself be a valid semver string.
|
||||
</Note>
|
||||
|
||||
{/* TODO: add screenshot of the Upgrade button */}
|
||||
|
||||
## npm’ye yayımlama
|
||||
@@ -189,3 +195,12 @@ Uygulamaları komut satırından da yükleyebilirsiniz:
|
||||
```bash filename="Terminal"
|
||||
yarn twenty install
|
||||
```
|
||||
|
||||
<Note>
|
||||
The server enforces semver versioning on install, mirroring the rules on deploy:
|
||||
|
||||
* Installing the same version that is already installed in your workspace is rejected with an `APP_ALREADY_INSTALLED` error.
|
||||
* Installing a lower version than the one currently installed is rejected with a `CANNOT_DOWNGRADE_APPLICATION` error.
|
||||
|
||||
To install a newer version, deploy or publish it first, then re-run `yarn twenty install`.
|
||||
</Note>
|
||||
|
||||
@@ -140,12 +140,12 @@ Veriler, o alan türü için beklenen biçimle eşleşmiyor.
|
||||
#### Tarih
|
||||
|
||||
**Sorun:** Tanınmayan tarih biçimi
|
||||
**Çözüm:** Dosya genelinde tutarlı bir biçim kullanın
|
||||
**Çözüm:** Dosya genelinde tutarlı bir şekilde `YYYY-MM-DD` biçimini kullanın
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - recommended)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### Telefon
|
||||
|
||||
@@ -103,8 +103,6 @@ Adres, birden çok sütundan oluşan **iç içe bir alandır** (bazıları boş
|
||||
Dosyanızın tamamında tutarlı bir biçim kullanın:
|
||||
|
||||
* `YYYY-MM-DD` (önerilir): `2024-03-15`
|
||||
* `MM/DD/YYYY`: `03/15/2024`
|
||||
* `DD/MM/YYYY`: `15/03/2024`
|
||||
* ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### Sayı Alanları
|
||||
|
||||
@@ -127,12 +127,12 @@ The data doesn't match the expected format for that field type.
|
||||
|
||||
#### Date
|
||||
**Problem:** Unrecognized date format
|
||||
**Solution:** Use consistent format throughout file
|
||||
**Solution:** Use `YYYY-MM-DD` format consistently throughout file
|
||||
|
||||
```
|
||||
✓ 2024-03-15 (YYYY-MM-DD - recommended)
|
||||
✓ 03/15/2024 (MM/DD/YYYY)
|
||||
✓ 15/03/2024 (DD/MM/YYYY)
|
||||
✓ 2024-03-15 (YYYY-MM-DD)
|
||||
❌ 03/15/2024 (MM/DD/YYYY)
|
||||
❌ 15/03/2024 (DD/MM/YYYY)
|
||||
```
|
||||
|
||||
#### Phone
|
||||
|
||||
@@ -93,8 +93,6 @@ Address is a **nested field** with multiple columns (some can be left empty):
|
||||
### Date Fields
|
||||
Use consistent formatting throughout your file:
|
||||
- `YYYY-MM-DD` (recommended): `2024-03-15`
|
||||
- `MM/DD/YYYY`: `03/15/2024`
|
||||
- `DD/MM/YYYY`: `15/03/2024`
|
||||
- ISO 8601: `2024-03-15T10:30:00Z`
|
||||
|
||||
### Number Fields
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Jy het nie toestemming om toegang tot die {fieldsList}
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} krediete"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "'n Fout het voorgekom tydens die oplaai van die prent."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Stel CalDAV-instellings op om u kalendergebeurtenisse te sinchroniseer."
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Konfigureer datum, tyd, nommer, tydsone, en kalender begin dag"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Konfigureer verstek-AI-modelle en beskikbaarheid"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Konfigureer hierdie widget om velde te vertoon"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Konfigureer wanneer hierdie funksie uitgevoer moet word"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Kernobjekte"
|
||||
msgid "Cost"
|
||||
msgstr "Koste"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Koste / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Koste / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Koste per 1k ekstra krediette"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Paneelbord suksesvol gedupliseer"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Data op vertoon"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Data-ligging"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Verwyderde rekord"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Deur hierdie metode te verwyder, sal dit permanent van u rekening verwyder word."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Kon nie model opdateer nie"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Kon nie modelbeskikbaarheid opdateer nie"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Kon nie modelbeskikbaarheid opdateer nie"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Kon nie modelaanbeveling opdateer nie"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Begin handmatig"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Maksimum invoer kapasiteit: {formatSpreadsheetMaxRecordImportCapacity} r
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maksimum uitset"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "Model-ID word vereis"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modelle"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Geen toestemmings vir hierdie toepassing gekonfigureer nie."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Geen toestemmings is ingestel vir individuele voorwerpe nie."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Geen rekord is nodig om hierdie werkvloei te aktiveer nie"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Geen rekords"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Verskaf jou OIDC verskafferdetaljes"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Verskaffer"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Rekordbladsy"
|
||||
msgid "Record Selection"
|
||||
msgstr "Rekord Seleksie"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Rekordtabel"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Stuur e-pos weer"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Stel terug"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Herstel na"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Instelling van jou databasis..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Oortjie Instellings"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Hierdie week"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "aansig"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, zero {ليس لديك إذن للوصول إلى حقل {fie
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} أرصدة"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "حدث خطأ أثناء تحميل الصورة."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "قم بتكوين إعدادات CalDAV لمزامنة أحداث الت
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "إعداد التاريخ والوقت والرقم والمنطقة الزمنية ويوم بدء التقويم"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "تهيئة نماذج الذكاء الاصطناعي الافتراضية وتوفرها"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "قم بتهيئة هذه الأداة لعرض الحقول"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "حدّد متى يجب تنفيذ هذه الوظيفة"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "الكائنات الأساسية"
|
||||
msgid "Cost"
|
||||
msgstr "التكلفة"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "التكلفة / 1 مليون"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "التكلفة / 1 مليون رمز"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "التكلفة لكل 1k من الإعتمادات الإضافية"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "تم تكرار لوحة القيادة بنجاح"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "بيانات"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "البيانات المعروضة"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "إقامة البيانات"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "السجل المحذوف"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "سيؤدي حذف هذه الطريقة إلى إزالتها نهائيًا من حسابك."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "فشل في تحديث النموذج"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "فشل في تحديث توفر النموذج"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "فشل في تحديث توفر النموذج"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "فشل في تحديث توصية النموذج"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "التشغيل يدويًا"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "الحد الأقصى لقدرة الاستيراد: {formatSpreadsheetM
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "الحد الأقصى للمخرجات"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "معرّف النموذج مطلوب"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "النماذج"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "لا توجد أذونات مُكوّنة لهذا التطبيق."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "لم يتم تعيين أي أذونات للعناصر الفردية."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "لا يتطلب سجل لتفعيل سير العمل هذا"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "لا توجد سجلات"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "قدّم تفاصيل موفّر OIDC الخاص بك"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "المزود"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "صفحة السجل"
|
||||
msgid "Record Selection"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "جدول السجلات"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "إعادة إرسال البريد الإلكتروني"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "إعادة تعيين"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "\\\\"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "إعداد قاعدة البيانات الخاصة بك..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "إعدادات علامة التبويب"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "هذا الأسبوع"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "عرض"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {No teniu permís per accedir al camp {fieldsList}} othe
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} crèdits"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "S'ha produït un error en carregar la imatge."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Configureu la configuració de CalDAV per sincronitzar els vostres esdev
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Configura la data, hora, número, fus horari i dia d'inici del calendari"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Configura els models d'IA predeterminats i la seva disponibilitat"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Configura aquest giny per mostrar camps"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Configura quan s'ha d'executar aquesta funció"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Objectes principals"
|
||||
msgid "Cost"
|
||||
msgstr "Cost"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Cost / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Cost / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Cost per 1 k Crèdits Extres"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Quadre de comandament duplicat correctament"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Dades"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Dades a mostrar"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residència de dades"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Registre suprimit"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Eliminar aquest mètode el eliminarà permanentment del teu compte."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "No s'ha pogut actualitzar el model"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "No s'ha pogut actualitzar la disponibilitat del model"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "No s'ha pogut actualitzar la disponibilitat del model"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "No s'ha pogut actualitzar la recomanació del model"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Llança manualment"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Capacitat màxima d'importació: {formatSpreadsheetMaxRecordImportCapaci
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Sortida màxima"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "L'ID del model és necessari"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Models"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "No hi ha cap permís configurat per a aquesta aplicació."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "No s'han establert permisos per a objectes individuals."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "No es requereix cap registre per activar aquest flux de treball"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Sense registres"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Proporciona els detalls del teu proveïdor OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Proveïdor"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Pàgina de registre"
|
||||
msgid "Record Selection"
|
||||
msgstr "Selecció d'enregistrament"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Taula de registres"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Reenviar correu electrònic"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Restableix"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Reinicia a"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Configurant la teva base de dades..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Configuració de la pestanya"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Aquesta setmana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "vista"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Nemáte povolení pro přístup k poli {fieldsList}} fe
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} kreditů"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Při nahrávání obrázku došlo k chybě."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Konfigurujte nastavení CalDAV pro synchronizaci událostí kalendáře.
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Nastavit datum, čas, číslo, časovou zónu a počáteční den kalendáře"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Nakonfigurujte výchozí modely AI a jejich dostupnost"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Nakonfigurujte tento widget, aby zobrazoval pole."
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Nastavte, kdy se má tato funkce spustit"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Základní objekty"
|
||||
msgid "Cost"
|
||||
msgstr "Cena"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Cena / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Cena / 1M tokenů"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Cena za 1k dalších kreditů"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Ovládací panel byl úspěšně duplikován"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Data na displeji"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Umístění dat"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Smazaný záznam"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Smazáním této metody ji trvale odeberete ze svého účtu."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Nepodařilo se aktualizovat model"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Nepodařilo se aktualizovat dostupnost modelu"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Nepodařilo se aktualizovat dostupnost modelu"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Nepodařilo se aktualizovat doporučení modelu"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Spustit ručně"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Maximální kapacita importu: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximální výstup"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "ID modelu je povinné"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modely"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Pro tuto aplikaci nejsou nakonfigurována žádná oprávnění."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Žádná oprávnění nebyla nastavena pro jednotlivé objekty."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "K aktivaci tohoto pracovního postupu není vyžadován žádný záznam
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Žádné záznamy"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Uveďte údaje o vašem poskytovateli OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Poskytovatel"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Záznamová stránka"
|
||||
msgid "Record Selection"
|
||||
msgstr "Výběr záznamů"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Tabulka záznamů"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Znovu odeslat e-mail"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Obnovit"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Obnovit na"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Nastavení vaší databáze..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Nastavení karet"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Tento týden"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "pohled"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Du har ikke tilladelse til at få adgang til {fieldsLis
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} kreditter"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Der opstod en fejl under upload af billedet."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Konfigurer CalDAV-indstillingerne for at synkronisere dine kalenderevent
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Konfigurer dato, tid, tal, tidszone og kalenderstartdag"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Konfigurer standard-AI-modeller og tilgængelighed"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Konfigurer denne widget til at vise felter"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Konfigurer, hvornår denne funktion skal køres"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Kerneobjekter"
|
||||
msgid "Cost"
|
||||
msgstr "Omkostninger"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Pris / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Pris / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Pris per 1k ekstra kreditter"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Dashboard duplikeret med succes"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Data på displayet"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Datalokation"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Slettet post"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Ved at slette denne metode fjernes den permanent fra din konto."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Kunne ikke opdatere modellen"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Kunne ikke opdatere modellens tilgængelighed"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Kunne ikke opdatere modellens tilgængelighed"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Kunne ikke opdatere modelanbefaling"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Start manuelt"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Maksimal importkapacitet: {formatSpreadsheetMaxRecordImportCapacity} pos
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maksimalt output"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "Model-id er påkrævet"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Ingen tilladelser konfigureret for denne app."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Der er ikke angivet tilladelser for individuelle objekter."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Ingen post kræves for at aktivere denne workflow"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Ingen poster"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Angiv dine OIDC-udbyderdetaljer"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Udbyder"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Post Side"
|
||||
msgid "Record Selection"
|
||||
msgstr "Optag valg"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Posttabel"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Send e-mail igen"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Nulstil"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Nulstil til"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Opsætning af din database..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Fanens indstillinger"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14252,6 +14270,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Denne uge"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15374,7 +15397,9 @@ msgid "view"
|
||||
msgstr "visning"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Sie haben keine Berechtigung, auf das Feld {fieldsList}
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} Credits"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Beim Hochladen des Bildes ist ein Fehler aufgetreten."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Konfigurieren Sie die CalDAV-Einstellungen, um Ihre Kalenderereignisse z
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Datum, Uhrzeit, Zahl, Zeitzone und Kalendertagesstart konfigurieren"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Standard-KI-Modelle und Verfügbarkeit konfigurieren"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Konfigurieren Sie dieses Widget, um Felder anzuzeigen."
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Legen Sie fest, wann diese Funktion ausgeführt werden soll"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Kernobjekte"
|
||||
msgid "Cost"
|
||||
msgstr "Kosten"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Kosten / 1 Mio."
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Kosten / 1 Mio. Token"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Kosten pro 1k zusätzliche Credits"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Dashboard erfolgreich dupliziert"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Daten"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Angezeigte Daten"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Datenresidenz"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Gelöschter Datensatz"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Durch das Löschen dieser Methode wird sie dauerhaft von Ihrem Konto entfernt."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Fehler beim Aktualisieren des Modells"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Fehler beim Aktualisieren der Modellverfügbarkeit"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Fehler beim Aktualisieren der Modellverfügbarkeit"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Fehler beim Aktualisieren der Modellempfehlung"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Manuell auslösen"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Maximale Importkapazität: {formatSpreadsheetMaxRecordImportCapacity} Da
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximale Ausgabe"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "Modell-ID ist erforderlich"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modelle"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Für diese App sind keine Berechtigungen konfiguriert."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Es wurden keine Berechtigungen für einzelne Objekte festgelegt."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Kein Datensatz ist erforderlich, um diesen Arbeitsablauf zu starten"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Keine Datensätze"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Bitte geben Sie die Details Ihres OIDC-Anbieters an"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Anbieter"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Rekordseite"
|
||||
msgid "Record Selection"
|
||||
msgstr "Datensatz-Auswahl"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Datensatztabelle"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "E-Mail erneut senden"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Zurücksetzen"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Zurücksetzen auf"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Einrichten Ihrer Datenbank..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Registerkarteneinstellungen"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Diese Woche"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "ansicht"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Δεν έχετε άδεια πρόσβασης στο
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} πιστώσεις"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Παρουσιάστηκε σφάλμα κατά τη μεταφόρτω
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Ρυθμίστε τις παραμέτρους του CalDAV για συ
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Διαμόρφωση ημερομηνίας, ώρας, αριθμού, ζώνης ώρας και έναρξης ημερολογίου"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Διαμόρφωση προεπιλεγμένων μοντέλων AI και διαθεσιμότητας"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Ρυθμίστε αυτό το γραφικό στοιχείο ώστε
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Ρυθμίστε πότε πρέπει να εκτελείται αυτή η συνάρτηση"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Κύρια Αντικείμενα"
|
||||
msgid "Cost"
|
||||
msgstr "Κόστος"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Κόστος / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Κόστος / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Κόστος ανά 1k επιπλέον πιστώσεις"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Ο πίνακας ελέγχου αντιγράφηκε με επιτυ
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Δεδομένα"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Δεδομένα στην οθόνη"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Τοποθεσία δεδομένων"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Διαγραμμένη εγγραφή"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Η διαγραφή αυτής της μεθόδου θα την αφαιρέσει μόνιμα από τον λογαριασμό σας."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Αποτυχία ενημέρωσης μοντέλου"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Αποτυχία ενημέρωσης διαθεσιμότητας μοντέλου"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Αποτυχία ενημέρωσης διαθεσιμότητας μο
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Αποτυχία ενημέρωσης σύστασης μοντέλου"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Εκκίνηση χειροκίνητα"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Ανώτατη χωρητικότητα εισαγωγής: {formatSprea
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Μέγιστη έξοδος"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "Απαιτείται το ID μοντέλου"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Μοντέλα"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Όνομα"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Δεν έχουν ρυθμιστεί δικαιώματα για αυτ
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Δεν έχουν οριστεί δικαιώματα για μεμονωμένα αντικείμενα."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Δεν απαιτείται καμία εγγραφή για να ενε
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Δεν υπάρχουν εγγραφές"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Παρέχετε τις λεπτομέρειες του παρόχου O
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Πάροχος"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Σελίδα εγγραφής"
|
||||
msgid "Record Selection"
|
||||
msgstr "Επιλογή Εγγραφών"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Πίνακας εγγραφών"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Επαναποστολή email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Επαναφορά"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Επαναφορά σε"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Ρύθμιση της βάσης δεδομένων σας..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13806,6 +13823,7 @@ msgstr "Ρυθμίσεις Καρτέλας"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14254,6 +14272,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Αυτή την εβδομάδα"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15376,7 +15399,9 @@ msgid "view"
|
||||
msgstr "προβολή"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -153,6 +153,16 @@ msgstr "{0, plural, one {You do not have permission to access the {fieldsList} f
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} credits"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr "{0} shown"
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1715,6 +1725,7 @@ msgstr "An error occurred while uploading the picture."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3329,11 +3340,6 @@ msgstr "Configure CalDAV settings to sync your calendar events."
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Configure date, time, number, timezone, and calendar start day"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Configure default AI models and availability"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3379,6 +3385,11 @@ msgstr "Configure this widget to display fields"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Configure when this function should be executed"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr "Configure your default AI model"
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3507,7 +3518,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3705,21 +3716,16 @@ msgstr "Core Objects"
|
||||
msgid "Cost"
|
||||
msgstr "Cost"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Cost / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Cost / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Cost per 1k Extra Credits"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr "Cost per 1M tokens"
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4257,7 +4263,6 @@ msgstr "Dashboard duplicated successfully"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
@@ -4310,7 +4315,7 @@ msgid "Data on display"
|
||||
msgstr "Data on display"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Data residency"
|
||||
|
||||
@@ -4473,6 +4478,7 @@ msgid "default"
|
||||
msgstr "default"
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4811,6 +4817,11 @@ msgstr "Deleted record"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Deleting this method will remove it permanently from your account."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr "Deprecated"
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6507,6 +6518,8 @@ msgstr "Failed to update model"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Failed to update model availability"
|
||||
@@ -6516,6 +6529,11 @@ msgstr "Failed to update model availability"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Failed to update model recommendation"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr "Failed to update model recommendations"
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8356,6 +8374,7 @@ msgstr "Launch manually"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8863,7 +8882,7 @@ msgstr "Max import capacity: {formatSpreadsheetMaxRecordImportCapacity} records.
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Max output"
|
||||
|
||||
@@ -9099,7 +9118,6 @@ msgstr "Model ID is required"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Models"
|
||||
@@ -9324,12 +9342,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
@@ -9994,6 +10012,12 @@ msgstr "No permissions configured for this application."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "No permissions have been set for individual objects."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr "No record"
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10005,11 +10029,6 @@ msgstr "No record is required to trigger this workflow"
|
||||
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"
|
||||
msgstr "No records"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11301,8 +11320,8 @@ msgstr "Provide your OIDC provider details"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Provider"
|
||||
|
||||
@@ -11556,12 +11575,6 @@ msgstr "Record Page"
|
||||
msgid "Record Selection"
|
||||
msgstr "Record Selection"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Record Table"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11884,6 +11897,7 @@ msgstr "Resend email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Reset"
|
||||
|
||||
@@ -11906,6 +11920,8 @@ msgstr "Reset to"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12943,6 +12959,7 @@ msgstr "Setting up your database..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13799,6 +13816,7 @@ msgstr "Tab Settings"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14247,6 +14265,11 @@ msgstr "This view uses {usageLabel} on object \"{0}\" which is not accessible."
|
||||
msgid "This week"
|
||||
msgstr "This week"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15369,7 +15392,9 @@ msgid "view"
|
||||
msgstr "view"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {No tienes permiso para acceder al campo {fieldsList}} o
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} créditos"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Se produjo un error al subir la imagen."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Configura los ajustes de CalDAV para sincronizar tus eventos de calendar
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Configurar fecha, hora, número, zona horaria y día de inicio del calendario"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Configura los modelos de IA predeterminados y su disponibilidad"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Configura este widget para visualizar campos"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Configura cuándo debe ejecutarse esta función"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Objetos principales"
|
||||
msgid "Cost"
|
||||
msgstr "Costo"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Costo / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Costo / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Costo por cada 1k Créditos Extra"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Se duplicó el tablero con éxito"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Datos"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Datos en pantalla"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residencia de datos"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Registro eliminado"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Eliminar este método lo eliminará permanentemente de tu cuenta."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Error al actualizar el modelo"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Error al actualizar la disponibilidad del modelo"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Error al actualizar la disponibilidad del modelo"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Error al actualizar la recomendación del modelo"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Lanzar manualmente"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Capacidad máxima de importación: {formatSpreadsheetMaxRecordImportCapa
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Salida máxima"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "El ID del modelo es obligatorio"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modelos"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "No hay permisos configurados para esta aplicación."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "No se han establecido permisos para objetos individuales."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "No se requiere ningún registro para activar este flujo de trabajo"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "No hay registros"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Proporcione los detalles de su proveedor OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Proveedor"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Página de registro"
|
||||
msgid "Record Selection"
|
||||
msgstr "Selección de registros"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Tabla de registros"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Reenviar correo electrónico"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Restablecer"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Restablecer a"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Configurando su base de datos..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Configuración de la pestaña"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14252,6 +14270,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Esta semana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15374,7 +15397,9 @@ msgid "view"
|
||||
msgstr "vista"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Sinulla ei ole oikeuksia käyttää kenttää {fieldsLi
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} krediittiä"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Kuvaa ladattaessa tapahtui virhe."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Määritä CalDAV-asetukset synkronoidaksesi kalenteritapahtumasi."
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Aseta päivämäärä, aika, numero, aikavyöhyke ja kalenterin aloituspäivä"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Määritä oletus-AI-mallit ja niiden saatavuus"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Määritä tämä pienoisohjelma näyttämään kenttiä"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Määritä, milloin tämä funktio suoritetaan"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Ydinobjektit"
|
||||
msgid "Cost"
|
||||
msgstr "Kustannus"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Hinta / 1 M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Hinta / 1 M tokenia"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Kustannus per 1k ylimääräiset hyvitykset"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Hallintapaneeli monistettiin onnistuneesti"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Näytettävä data"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Tietojen sijainti"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Poistettu tietue"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Tämän menetelmän poistaminen poistaa sen pysyvästi tililtäsi."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Mallin päivittäminen epäonnistui"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Mallin saatavuuden päivittäminen epäonnistui"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Mallin saatavuuden päivittäminen epäonnistui"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Mallisuosituksen päivittäminen epäonnistui"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Käynnistä manuaalisesti"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Enimmäistuontikapasiteetti: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Enimmäistuloste"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "Mallin tunnus on pakollinen"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Mallit"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Tälle sovellukselle ei ole määritetty käyttöoikeuksia."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Yksittäisille kohteille ei ole asetettu käyttöoikeuksia."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Ei tietuetta tarvita tämän työnkulun käynnistämiseen"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Ei tietueita"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Anna OIDC-tarjoajan tiedot"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Tarjoaja"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Tietuesivu"
|
||||
msgid "Record Selection"
|
||||
msgstr "Valitse tietueet"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Tietuetaulukko"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Lähetä sähköposti uudelleen"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Nollaa"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Palauta"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Asetetaan tietokantaasi..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Välilehden asetukset"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Tämä viikko"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "näkymä"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Vous n'avez pas la permission d'accéder au champ {fiel
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} crédits"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Une erreur s'est produite lors du téléversement de l'image."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Configurez les paramètres de CalDAV pour synchroniser vos événements
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Configurer la date, l'heure, le nombre, le fuseau horaire et le jour de début du calendrier"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Configurer les modèles d'IA par défaut et leur disponibilité"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Configurez ce widget pour afficher des champs"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Configurez le moment où cette fonction doit être exécutée"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Objets de base"
|
||||
msgid "Cost"
|
||||
msgstr "Coût"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Coût / 1 M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Coût / 1 M de jetons"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Coût pour 1k de crédits supplémentaires"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Tableau de bord dupliqué avec succès"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Données"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Données affichées"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Résidence des données"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Enregistrement supprimé"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "La suppression de cette méthode l'éliminera définitivement de votre compte."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Échec de la mise à jour du modèle"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Échec de la mise à jour de la disponibilité du modèle"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Échec de la mise à jour de la disponibilité du modèle"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Échec de la mise à jour de la recommandation de modèle"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Lancer manuellement"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Capacité d'importation maximale : {formatSpreadsheetMaxRecordImportCapa
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Sortie maximale"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "L'ID du modèle est requis"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modèles"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Aucune autorisation configurée pour cette application."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Aucune autorisation n'a été définie pour les objets individuels."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Aucun enregistrement n'est requis pour déclencher ce flux de travail"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Aucun enregistrement"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Fournissez les détails de votre fournisseur OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Fournisseur"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Page d'enregistrement"
|
||||
msgid "Record Selection"
|
||||
msgstr "Sélection des enregistrements"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Table des enregistrements"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Renvoyer l'email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Réinitialiser"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Réinitialiser à"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Configuration de votre base de données..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Paramètres de l'onglet"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14252,6 +14270,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Cette semaine"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15374,7 +15397,9 @@ msgid "view"
|
||||
msgstr "vue"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
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
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {אין לך גישה לשדה {fieldsList}} two {אין
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} קרדיטים"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "אירעה שגיאה בעת העלאת התמונה."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "הגדר את הגדרות CalDAV לסנכרון אירועי לוח ה
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "הגדרת תאריך, שעה, מספר, אזור זמן ויום התחלת לוח שנה"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "הגדר את מודלי ה-AI כברירת מחדל ואת זמינותם"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "הגדירו את הווידג'ט הזה כדי להציג שדות"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "הגדר מתי יש להפעיל פונקציה זו"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "אובייקטי ליבה"
|
||||
msgid "Cost"
|
||||
msgstr "עלות"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "עלות / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "עלות / 1M אסימונים"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "עלות לכל אלף נקודות"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "לוח הבקרה שוכפל בהצלחה"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "מידע"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "הנתונים בתצוגה"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "ריבונות נתונים"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "רשומה שנמחקה"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "מחיקת שיטה זו תסיר אותה לצמיתות מחשבונך."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "העדכון של המודל נכשל"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "העדכון של זמינות המודל נכשל"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "העדכון של זמינות המודל נכשל"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "עדכון המלצת המודל נכשל"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "הפעל ידנית"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "קיבולת ייבוא מקסימלית: {formatSpreadsheetMaxRecordImp
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "פלט מרבי"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "נדרש מזהה מודל"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "מודלים"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "לא הוגדרו הרשאות עבור יישום זה."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "לא הוגדרו הרשאות עבור אובייקטים בודדים."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "לא נדרש תיעוד להפעלת תהליך עבודה זה"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "אין רשומות"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "ספק את פרטי ספק OIDC שלך"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "ספק"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "דף רישום"
|
||||
msgid "Record Selection"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "טבלת רשומות"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "שלח שוב את הדוא\"ל"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "איפוס"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "\\"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "מגדיר את מסד הנתונים שלך..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "הגדרות כרטיסייה"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "השבוע"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "תצוגה"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Nincs jogosultsága a(z) {fieldsList} mező eléréséh
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} kredit"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Hiba történt a kép feltöltése közben."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "A CalDAV beállítások konfigurálása a naptáresemények szinkronizá
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Dátum, idő, szám, időzóna és a naptár kezdőnapjának konfigurálása"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Alapértelmezett AI modellek és elérhetőségük beállítása"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Konfigurálja ezt a widgetet a mezők megjelenítéséhez"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Állítsa be, mikor fusson ez a függvény"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Alap objektumok"
|
||||
msgid "Cost"
|
||||
msgstr "Költség"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Költség / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Költség / 1M token"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Költség 1k extra kreditenként"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Irányítópult sikeresen duplikálva"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Adat"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Megjelenő adatok"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Adatrezidencia"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Törölt rekord"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Ha ezt a módszert törli, az véglegesen eltávolításra kerül a fiókjából."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Nem sikerült frissíteni a modellt"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Nem sikerült frissíteni a modell elérhetőségét"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Nem sikerült frissíteni a modell elérhetőségét"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Nem sikerült frissíteni a modellajánlást"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Indítás manuálisan"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Maximális importálási kapacitás: {formatSpreadsheetMaxRecordImportCa
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximális kimenet"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "A modellazonosító megadása kötelező"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modellek"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Ehhez az alkalmazáshoz nincsenek jogosultságok beállítva."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Nincs jogosultság beállítva az egyes objektumokhoz."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Nincs szükség rekordra ennek a munkafolyamatnak a elindításához"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Nincsenek rekordok"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Adja meg OIDC szolgáltatói adatait"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Szolgáltató"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Felvételi oldal"
|
||||
msgid "Record Selection"
|
||||
msgstr "Bejegyzések kiválasztása"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Rekordtábla"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "E-mail újraküldése"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Visszaállítás"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Visszaállítás"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Az adatbázis beállítása..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Fül beállítások"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Ezen a héten"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "nézet"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Non hai il permesso di accedere al campo {fieldsList}}
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} crediti"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Si è verificato un errore durante il caricamento dell'immagine."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Configura le impostazioni CalDAV per sincronizzare i tuoi eventi del cal
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Configura data, ora, numero, fuso orario e giorno di inizio calendario"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Configura i modelli IA predefiniti e la disponibilità"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Configura questo widget per visualizzare i campi"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Configura quando questa funzione deve essere eseguita"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Oggetti principali"
|
||||
msgid "Cost"
|
||||
msgstr "Costo"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Costo / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Costo / 1M token"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Costo per 1k crediti extra"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Cruscotto duplicato con successo"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Dati"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Dati visualizzati"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Residenza dei dati"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Record eliminato"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Eliminando questo metodo verrà rimosso definitivamente dal tuo account."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Impossibile aggiornare il modello"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Impossibile aggiornare la disponibilità del modello"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Impossibile aggiornare la disponibilità del modello"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Impossibile aggiornare la raccomandazione del modello"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Avvia manualmente"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Capacità massima d'importazione: {formatSpreadsheetMaxRecordImportCapac
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Output massimo"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "L'ID del modello è obbligatorio"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modelli"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Nessun permesso configurato per questa applicazione."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Nessuna autorizzazione è stata impostata per gli oggetti individuali."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Non è richiesto alcun record per attivare questo flusso di lavoro"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Nessun record"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Fornisci i dettagli del tuo provider OIDC"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Provider"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Pagina del record"
|
||||
msgid "Record Selection"
|
||||
msgstr "Selezione record"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Tabella dei record"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Rinvia email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Reimposta"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Reimposta a"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Configurazione del tuo database..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Impostazioni scheda"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14252,6 +14270,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Questa settimana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15374,7 +15397,9 @@ msgid "view"
|
||||
msgstr "vista"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, other {フィールド {fieldsList} にアクセスする権
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} クレジット"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "画像のアップロード中にエラーが発生しました。"
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "カレンダーイベントを同期するためにCalDAV設定を構成
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "日付、時間、数値、タイムゾーン、カレンダー開始日を設定する"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "デフォルトの AI モデルと可用性を設定"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "フィールドを表示するには、このウィジェットを設定
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "この関数が実行されるタイミングを設定します"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "コアオブジェクト"
|
||||
msgid "Cost"
|
||||
msgstr "コスト"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "100万あたりのコスト"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "100万トークンあたりのコスト"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "1k追加クレジットあたりのコスト"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "ダッシュボードが正常に複製されました"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "データ"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "表示中のデータ"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "データレジデンシー"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "削除されたレコード"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "この方法を削除すると、アカウントから永久に削除されます。"
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "モデルの更新に失敗しました"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "モデルの可用性の更新に失敗しました"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "モデルの可用性の更新に失敗しました"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "モデルの推奨設定の更新に失敗しました"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "手動で起動"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "最大インポート容量: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "最大出力"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "モデル ID は必須です"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "モデル"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "名前"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "このアプリケーションには権限が設定されていません
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "個々のオブジェクトに対して権限が設定されていません。"
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "このワークフローを起動するために必要なレコードは
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "レコードがありません"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "OIDCプロバイダーの詳細を提供してください"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "プロバイダー"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "レコードページ"
|
||||
msgid "Record Selection"
|
||||
msgstr "レコード選択"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "レコードテーブル},{"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "メールを再送信"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "リセット"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "リセット"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "データベースのセットアップ..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "タブ設定"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "今週"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "ビュー"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, other {귀하는 {fieldsList} 필드를 액세스할 권한
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} 크레딧"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "사진을 업로드하는 중 오류가 발생했습니다."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "CalDAV 설정을 구성하여 캘린더 이벤트를 동기화하세요.
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "날짜, 시간, 숫자, 시간대 및 캘린더 시작일 구성"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "기본 AI 모델과 사용 가능 여부를 설정합니다"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "필드를 표시하도록 이 위젯을 구성하세요"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "이 함수의 실행 시점을 구성하세요"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "핵심 객체"
|
||||
msgid "Cost"
|
||||
msgstr "비용"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "비용 / 100만"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "비용 / 100만 토큰"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "1천 크레딧 추가 비용"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "대시보드가 성공적으로 복제되었습니다"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "데이터"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "표시된 데이터"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "데이터 레지던시"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "삭제된 레코드"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "이 방법을 삭제하면 계정에서 영구적으로 제거됩니다."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "모델을 업데이트하지 못했습니다"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "모델의 사용 가능 여부를 업데이트하지 못했습니다"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "모델의 사용 가능 여부를 업데이트하지 못했습니다"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "모델 추천을 업데이트하지 못했습니다"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "수동 실행"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "최대 가져오기 용량: {formatSpreadsheetMaxRecordImportCapacity}
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "최대 출력"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "모델 ID가 필요합니다"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "모델"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "이 애플리케이션에 대해 구성된 권한이 없습니다."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "개별 객체에 대한 권한이 설정되지 않았습니다."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "이 워크플로우를 트리거하기 위해 기록이 필요하지 않
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "레코드 없음"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "OIDC 공급자 세부정보를 제공하세요"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "공급자"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "레코드 페이지"
|
||||
msgid "Record Selection"
|
||||
msgstr "레코드 선택"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "레코드 테이블"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "이메일 다시 보내기"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "초기화"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "다음으로 재설정"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "데이터베이스 설정 중..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "탭 설정"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "이번 주"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "보기"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {U heeft geen toestemming om toegang te krijgen tot het
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} credits"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Er is een fout opgetreden bij het uploaden van de afbeelding."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Configureer CalDAV-instellingen om uw agenda-evenementen te synchroniser
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Configureer datum, tijd, nummer, tijdzone en startdag van de kalender"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Standaard AI-modellen en beschikbaarheid configureren"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Configureer deze widget om velden weer te geven"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Configureer wanneer deze functie moet worden uitgevoerd"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Kernobjecten"
|
||||
msgid "Cost"
|
||||
msgstr "Kosten"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Kosten / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Kosten / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Kosten per 1k extra credits"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Dashboard succesvol gedupliceerd"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Data op display"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Gegevensresidentie"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Verwijderd record"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Het verwijderen van deze methode zal het permanent van uw account verwijderen."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Fout bij het bijwerken van het model"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Fout bij het bijwerken van de beschikbaarheid van het model"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Fout bij het bijwerken van de beschikbaarheid van het model"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Het bijwerken van de modelaanbeveling is mislukt"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Handmatig starten"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Maximale importcapaciteit: {formatSpreadsheetMaxRecordImportCapacity} re
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maximale uitvoer"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "Model-ID is vereist"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modellen"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Geen machtigingen geconfigureerd voor deze app."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Er zijn geen machtigingen ingesteld voor afzonderlijke objecten."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Er is geen record vereist om deze workflow te activeren"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Geen records"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Geef uw OIDC-providerdetails"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Aanbieder"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Recordpagina"
|
||||
msgid "Record Selection"
|
||||
msgstr "Selectie opnemen"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Recordtabel"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "E-mail opnieuw verzenden"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Resetten"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Reset naar"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Uw database opzetten..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Tabblad Instellingen"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14252,6 +14270,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Deze week"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15374,7 +15397,9 @@ msgid "view"
|
||||
msgstr "weergave"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
@@ -158,6 +158,16 @@ msgstr "{0, plural, one {Du har ikke tillatelse til å få tilgang til feltet {f
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} kreditter"
|
||||
|
||||
#. js-lingui-id: peiknr
|
||||
#. placeholder {0}: activeVisibleFieldLabels.length
|
||||
#. placeholder {0}: activeFilterLabels.length
|
||||
#. placeholder {0}: activeSortLabels.length
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useRecordTableSettingsDescriptions.ts
|
||||
msgid "{0} shown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
@@ -1720,6 +1730,7 @@ msgstr "Det oppstod en feil under opplasting av bildet."
|
||||
#: src/modules/ui/feedback/snack-bar-manager/hooks/useSnackBar.ts
|
||||
#: src/modules/page-layout/hooks/useUpdatePageLayoutWithTabsAndWidgets.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutWidgetToDefault.ts
|
||||
#: src/modules/page-layout/hooks/useResetPageLayoutTabToDefault.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneObjectMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useUpdateOneFieldMetadataItem.ts
|
||||
#: src/modules/object-metadata/hooks/useDeleteOneObjectMetadataItem.ts
|
||||
@@ -3334,11 +3345,6 @@ msgstr "Konfigurer CalDAV-innstillinger for å synkronisere kalenderhendelsene d
|
||||
msgid "Configure date, time, number, timezone, and calendar start day"
|
||||
msgstr "Konfigurer dato, tid, nummer, tidssone og kalenders startdag"
|
||||
|
||||
#. js-lingui-id: +SQwHr
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure default AI models and availability"
|
||||
msgstr "Konfigurer standard AI-modeller og tilgjengelighet"
|
||||
|
||||
#. js-lingui-id: utsXG8
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
@@ -3384,6 +3390,11 @@ msgstr "Konfigurer denne widgeten for å vise felt"
|
||||
msgid "Configure when this function should be executed"
|
||||
msgstr "Konfigurer når denne funksjonen skal kjøres"
|
||||
|
||||
#. js-lingui-id: hzDiM0
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Configure your default AI model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bh4GBD
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
msgid "Configure your emails and calendar settings."
|
||||
@@ -3512,7 +3523,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/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
@@ -3710,21 +3721,16 @@ msgstr "Kjerneobjekter"
|
||||
msgid "Cost"
|
||||
msgstr "Kostnad"
|
||||
|
||||
#. js-lingui-id: Iw/ard
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Cost / 1M"
|
||||
msgstr "Kostnad / 1M"
|
||||
|
||||
#. js-lingui-id: 3kzLg2
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
msgid "Cost / 1M tokens"
|
||||
msgstr "Kostnad / 1M tokens"
|
||||
|
||||
#. js-lingui-id: iX2opZ
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Cost per 1k Extra Credits"
|
||||
msgstr "Kostnad per 1k ekstra kreditter"
|
||||
|
||||
#. js-lingui-id: Z9Z9PX
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Cost per 1M tokens"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3X5ngu
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
msgid "Cost per million tokens (USD)"
|
||||
@@ -4262,7 +4268,6 @@ msgstr "Dashbordet ble duplisert"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
@@ -4315,7 +4320,7 @@ msgid "Data on display"
|
||||
msgstr "Data på skjerm"
|
||||
|
||||
#. js-lingui-id: Ix/CMz
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Data residency"
|
||||
msgstr "Dataresidens"
|
||||
|
||||
@@ -4478,6 +4483,7 @@ msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
msgid "Default"
|
||||
@@ -4816,6 +4822,11 @@ msgstr "Slettet oppføring"
|
||||
msgid "Deleting this method will remove it permanently from your account."
|
||||
msgstr "Å slette denne metoden vil fjerne den permanent fra kontoen din."
|
||||
|
||||
#. js-lingui-id: Ssdrw4
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
msgid "Deprecated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O3LJh6
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getSortLabelSuffixForFieldType.ts
|
||||
@@ -6512,6 +6523,8 @@ msgstr "Kunne ikke oppdatere modell"
|
||||
|
||||
#. js-lingui-id: W7Ff/4
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Failed to update model availability"
|
||||
msgstr "Kunne ikke oppdatere modelltilgjengelighet"
|
||||
@@ -6521,6 +6534,11 @@ msgstr "Kunne ikke oppdatere modelltilgjengelighet"
|
||||
msgid "Failed to update model recommendation"
|
||||
msgstr "Kunne ikke oppdatere modellanbefaling"
|
||||
|
||||
#. js-lingui-id: q1MtjM
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Failed to update model recommendations"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rCUG3c
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Failed to update model selection mode"
|
||||
@@ -8361,6 +8379,7 @@ msgstr "Start manuelt"
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/record-page/SidePanelRecordPageFieldSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8868,7 +8887,7 @@ msgstr "Maksimal importkapasitet: {formatSpreadsheetMaxRecordImportCapacity} pos
|
||||
|
||||
#. js-lingui-id: S8w4XA
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiModel.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Max output"
|
||||
msgstr "Maks utdata"
|
||||
|
||||
@@ -9104,7 +9123,6 @@ msgstr "Modell-ID er påkrevd"
|
||||
|
||||
#. js-lingui-id: //nm2/
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Models"
|
||||
msgstr "Modeller"
|
||||
@@ -9329,12 +9347,12 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
@@ -9999,6 +10017,12 @@ msgstr "Ingen tillatelser er konfigurert for denne appen."
|
||||
msgid "No permissions have been set for individual objects."
|
||||
msgstr "Ingen tillatelser er satt for individuelle objekter."
|
||||
|
||||
#. js-lingui-id: V/+aTW
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordFieldChip.tsx
|
||||
msgid "No record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ePgApM
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "No record is required to trigger this workflow"
|
||||
@@ -10010,11 +10034,6 @@ msgstr "Ingen post er nødvendig for å utløse denne arbeidsflyten"
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
msgstr "Ingen poster"
|
||||
|
||||
#. js-lingui-id: EqGTpW
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateReadOnly.tsx
|
||||
#: src/modules/object-record/record-picker/components/RecordPickerNoRecordFoundMenuItem.tsx
|
||||
@@ -11306,8 +11325,8 @@ msgstr "Oppgi detaljene til din OIDC-leverandør"
|
||||
|
||||
#. js-lingui-id: aemBRq
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelsTable.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelsTable.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
msgid "Provider"
|
||||
msgstr "Tilbyder"
|
||||
|
||||
@@ -11561,12 +11580,6 @@ msgstr "Opptak side"
|
||||
msgid "Record Selection"
|
||||
msgstr "Velg poster"
|
||||
|
||||
#. js-lingui-id: J9Cfll
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Record Table"
|
||||
msgstr "Oppføringstabell"
|
||||
|
||||
#. js-lingui-id: NxW0+c
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Record Table Settings"
|
||||
@@ -11889,6 +11902,7 @@ msgstr "Send på nytt"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Tilbakestill"
|
||||
|
||||
@@ -11911,6 +11925,8 @@ msgstr "Tilbakestill til"
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: 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"
|
||||
@@ -12948,6 +12964,7 @@ msgstr "Konfigurere databasen din..."
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -13804,6 +13821,7 @@ msgstr "Faneinnstillinger"
|
||||
#. js-lingui-id: 4hJhzz
|
||||
#: src/pages/settings/security/event-logs/components/EventLogTableSelector.tsx
|
||||
#: src/modules/views/view-picker/constants/ViewPickerTypeSelectOptions.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/keyboard-shortcut-menu/components/KeyboardShortcutMenuOpenContent.tsx
|
||||
msgid "Table"
|
||||
@@ -14250,6 +14268,11 @@ msgstr ""
|
||||
msgid "This week"
|
||||
msgstr "Denne uken"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VbVocX
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "This will cancel all modifications done on the widget. This action cannot be undone."
|
||||
@@ -15372,7 +15395,9 @@ msgid "view"
|
||||
msgstr "vis"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutDashboardWidgetTypeSelect.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user