Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f53487c49 | ||
|
|
498a0197c9 | ||
|
|
78473a606a | ||
|
|
b21fb4aa6f | ||
|
|
38664249cf | ||
|
|
69542898a1 | ||
|
|
09beddb63d | ||
|
|
2eac82c207 | ||
|
|
f262437da6 | ||
|
|
15d0970f72 | ||
|
|
1adc325887 | ||
|
|
5726bd6e17 | ||
|
|
194ca85578 | ||
|
|
e5defd686c | ||
|
|
38532ee0c3 | ||
|
|
30a51ae98e | ||
|
|
ef99ec66a7 | ||
|
|
7af8fdb7a3 | ||
|
|
0b0ef20193 | ||
|
|
ee8c74fba6 | ||
|
|
6d69808a4a | ||
|
|
411cb7332b | ||
|
|
100962e67b | ||
|
|
9bc64ae4d9 | ||
|
|
9483ba37b9 | ||
|
|
e35ef97e78 | ||
|
|
102b49f919 | ||
|
|
4e8d2c706b | ||
|
|
bc1570810a | ||
|
|
2af3121c51 | ||
|
|
a024a04e01 | ||
|
|
f0c83434a7 | ||
|
|
b699619756 | ||
|
|
b2f053490d | ||
|
|
21de221420 | ||
|
|
d9b3507866 | ||
|
|
b346f4fb59 | ||
|
|
2c5af2654d | ||
|
|
6cbc7725b7 | ||
|
|
27f2a81207 | ||
|
|
744ef3aa9d | ||
|
|
ef92d2d321 | ||
|
|
00c3cd1051 | ||
|
|
99f885306e | ||
|
|
413d1124bb | ||
|
|
23c2449d86 | ||
|
|
b2beefb6d7 | ||
|
|
ab5fb1f658 | ||
|
|
e4e7137660 | ||
|
|
7fb8cc1c39 |
@@ -1,18 +0,0 @@
|
||||
{
|
||||
"install": "curl -fsSL https://deb.nodesource.com/setup_24.x | sudo -E bash - && sudo apt-get install -y nodejs && node --version && yarn install && echo 'Setting up Docker Compose environment...' && cd packages/twenty-docker && cp -n docker-compose.yml docker-compose.dev.yml || true && echo 'Dependencies installed and docker-compose prepared'",
|
||||
"start": "sudo service docker start && echo 'Docker service started' && cd packages/twenty-docker && echo 'Installing yq for YAML processing...' && sudo apt-get update -qq && sudo apt-get install -y wget && wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 && sudo chmod +x /usr/local/bin/yq && echo 'Patching docker-compose for local development...' && yq eval 'del(.services.server.image)' -i docker-compose.dev.yml && yq eval '.services.server.build.context = \"../../\"' -i docker-compose.dev.yml && yq eval '.services.server.build.dockerfile = \"./packages/twenty-docker/twenty/Dockerfile\"' -i docker-compose.dev.yml && yq eval 'del(.services.worker.image)' -i docker-compose.dev.yml && yq eval '.services.worker.build.context = \"../../\"' -i docker-compose.dev.yml && yq eval '.services.worker.build.dockerfile = \"./packages/twenty-docker/twenty/Dockerfile\"' -i docker-compose.dev.yml && echo 'Setting up .env file with database configuration...' && echo 'SERVER_URL=http://localhost:3000' > .env && echo 'APP_SECRET='$(openssl rand -base64 32) >> .env && echo 'PG_DATABASE_PASSWORD='$(openssl rand -hex 16) >> .env && echo 'PG_DATABASE_URL=postgres://postgres:password@localhost:5432/postgres' >> .env && echo 'SIGN_IN_PREFILLED=true' >> .env && echo 'Building and starting services...' && docker-compose -f docker-compose.dev.yml up -d --build && echo 'Waiting for services to initialize...' && sleep 30 && echo 'Checking service health...' && docker-compose -f docker-compose.dev.yml ps && echo 'Environment setup complete!'",
|
||||
"terminals": [
|
||||
{
|
||||
"name": "Database Setup & Seed",
|
||||
"command": "sleep 40 && cd packages/twenty-docker && echo 'Waiting for PostgreSQL to be ready...' && until docker-compose -f docker-compose.dev.yml exec -T db pg_isready -U postgres; do echo 'Waiting for PostgreSQL...'; sleep 5; done && echo 'PostgreSQL is ready!' && echo 'Waiting for Twenty server to be healthy...' && until docker-compose -f docker-compose.dev.yml exec -T server curl --fail http://localhost:3000/healthz 2>/dev/null; do echo 'Waiting for server...'; sleep 5; done && echo 'Server is healthy!' && echo 'Running database setup and seeding...' && docker-compose -f docker-compose.dev.yml exec -T server npx nx database:reset twenty-server && echo 'Database seeded successfully!' && bash"
|
||||
},
|
||||
{
|
||||
"name": "Application Logs",
|
||||
"command": "sleep 35 && cd packages/twenty-docker && echo 'Following application logs...' && docker-compose -f docker-compose.dev.yml logs -f server worker"
|
||||
},
|
||||
{
|
||||
"name": "Service Monitor",
|
||||
"command": "sleep 15 && cd packages/twenty-docker && echo '=== Service Status Monitor ===' && while true; do clear; echo '=== Service Status at $(date) ===' && docker-compose -f docker-compose.dev.yml ps && echo '\\n=== Health Status ===' && (docker-compose -f docker-compose.dev.yml exec -T server curl -s http://localhost:3000/healthz 2>/dev/null && echo '✅ Twenty Server: Healthy') || echo '❌ Twenty Server: Not Ready' && (docker-compose -f docker-compose.dev.yml exec -T db pg_isready -U postgres 2>/dev/null && echo '✅ PostgreSQL: Ready') || echo '❌ PostgreSQL: Not Ready' && echo '\\n=== Database Connection Test ===' && docker-compose -f docker-compose.dev.yml exec -T server node -e \"const { Client } = require('pg'); const client = new Client({connectionString: process.env.PG_DATABASE_URL}); client.connect().then(() => {console.log('✅ Database Connection: OK'); client.end();}).catch(e => console.log('❌ Database Connection: Failed -', e.message));\" || echo 'Connection test failed' && sleep 45; done"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"install": "yarn install",
|
||||
"start": "sudo service docker start && sleep 2 && (docker start twenty_pg 2>/dev/null || make -C packages/twenty-docker postgres-on-docker) && (docker start twenty_redis 2>/dev/null || make -C packages/twenty-docker redis-on-docker) && until docker exec twenty_pg pg_isready -U postgres -h localhost 2>/dev/null; do sleep 1; done && echo 'PostgreSQL ready' && until docker exec twenty_redis redis-cli ping 2>/dev/null | grep -q PONG; do sleep 1; done && echo 'Redis ready' && bash packages/twenty-utils/setup-dev-env.sh && npx nx database:reset twenty-server",
|
||||
"start": "(sudo service docker start || service docker start || true) && bash packages/twenty-utils/setup-dev-env.sh && npx nx database:reset twenty-server",
|
||||
"terminals": [
|
||||
{
|
||||
"name": "Development Server",
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
storage: /tmp/verdaccio-storage
|
||||
auth:
|
||||
htpasswd:
|
||||
file: /tmp/verdaccio-htpasswd
|
||||
max_users: 100
|
||||
uplinks:
|
||||
npmjs:
|
||||
url: https://registry.npmjs.org/
|
||||
packages:
|
||||
'twenty-sdk':
|
||||
access: $all
|
||||
publish: $all
|
||||
'create-twenty-app':
|
||||
access: $all
|
||||
publish: $all
|
||||
'**':
|
||||
access: $all
|
||||
proxy: npmjs
|
||||
log: { type: stdout, format: pretty, level: warn }
|
||||
@@ -0,0 +1,182 @@
|
||||
name: CI Create App E2E
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
changed-files-check:
|
||||
uses: ./.github/workflows/changed-files.yaml
|
||||
with:
|
||||
files: |
|
||||
packages/create-twenty-app/**
|
||||
packages/twenty-sdk/**
|
||||
packages/twenty-shared/**
|
||||
packages/twenty-server/**
|
||||
!packages/create-twenty-app/package.json
|
||||
!packages/twenty-sdk/package.json
|
||||
!packages/twenty-shared/package.json
|
||||
!packages/twenty-server/package.json
|
||||
create-app-e2e:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest-4-cores
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
ALLOW_NOSSL: 'true'
|
||||
SPILO_PROVIDER: 'local'
|
||||
ports:
|
||||
- 5432:5432
|
||||
options: >-
|
||||
--health-cmd pg_isready
|
||||
--health-interval 10s
|
||||
--health-timeout 5s
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 10
|
||||
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
|
||||
- name: Set CI version and prepare packages for publish
|
||||
run: |
|
||||
CI_VERSION="0.0.0-ci.$(date +%s)"
|
||||
echo "CI_VERSION=$CI_VERSION" >> $GITHUB_ENV
|
||||
npx nx run-many -t set-local-version -p twenty-sdk create-twenty-app --releaseVersion=$CI_VERSION
|
||||
|
||||
- name: Build packages
|
||||
run: |
|
||||
npx nx build twenty-sdk
|
||||
npx nx build create-twenty-app
|
||||
|
||||
- name: Install and start Verdaccio
|
||||
run: |
|
||||
npx verdaccio --config .github/verdaccio-config.yaml &
|
||||
|
||||
for i in $(seq 1 30); do
|
||||
if curl -s http://localhost:4873 > /dev/null 2>&1; then
|
||||
echo "Verdaccio is ready"
|
||||
break
|
||||
fi
|
||||
echo "Waiting for Verdaccio... ($i/30)"
|
||||
sleep 1
|
||||
done
|
||||
|
||||
- name: Publish packages to local registry
|
||||
run: |
|
||||
npm set //localhost:4873/:_authToken "ci-auth-token"
|
||||
|
||||
for pkg in twenty-sdk create-twenty-app; do
|
||||
cd packages/$pkg
|
||||
npm publish --registry http://localhost:4873 --tag ci
|
||||
cd ../..
|
||||
done
|
||||
|
||||
- name: Scaffold app using published create-twenty-app
|
||||
run: |
|
||||
npm install -g create-twenty-app@$CI_VERSION --registry http://localhost:4873
|
||||
create-twenty-app --version
|
||||
mkdir -p /tmp/e2e-test-workspace
|
||||
cd /tmp/e2e-test-workspace
|
||||
create-twenty-app test-app --exhaustive --display-name "Test App" --description "E2E test app"
|
||||
|
||||
- name: Install scaffolded app dependencies
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
echo 'npmRegistryServer: "http://localhost:4873"' >> .yarnrc.yml
|
||||
echo 'unsafeHttpWhitelist: ["localhost"]' >> .yarnrc.yml
|
||||
YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install --no-immutable
|
||||
|
||||
- name: Verify installed app versions
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
echo "--- Checking package.json references correct SDK version ---"
|
||||
node -e "
|
||||
const pkg = require('./package.json');
|
||||
const sdkVersion = pkg.devDependencies['twenty-sdk'];
|
||||
if (!sdkVersion.startsWith('0.0.0-ci.')) {
|
||||
console.error('Expected twenty-sdk version to start with 0.0.0-ci., got:', sdkVersion);
|
||||
process.exit(1);
|
||||
}
|
||||
console.log('SDK version in scaffolded app:', sdkVersion);
|
||||
"
|
||||
|
||||
- name: Verify SDK CLI is available
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty --version
|
||||
|
||||
- name: Setup server environment
|
||||
run: npx nx reset:env:e2e-testing-server twenty-server
|
||||
|
||||
- name: Build server
|
||||
run: npx nx build twenty-server
|
||||
|
||||
- name: Create and setup database
|
||||
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";'
|
||||
npx nx run twenty-server:database:reset
|
||||
|
||||
- name: Start server
|
||||
run: |
|
||||
npx nx start twenty-server &
|
||||
echo "Waiting for server to be ready..."
|
||||
timeout 60 bash -c 'until curl -s http://localhost:3000/health; do sleep 2; done'
|
||||
|
||||
- name: Authenticate with twenty-server
|
||||
env:
|
||||
SEED_API_KEY: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik'
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty auth:login --api-key $SEED_API_KEY --api-url http://localhost:3000
|
||||
|
||||
- name: Build scaffolded app
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty app:build
|
||||
test -d .twenty/output
|
||||
|
||||
- name: Execute hello-world logic function
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
EXEC_OUTPUT=$(npx --no-install twenty function:execute --functionName hello-world-logic-function)
|
||||
echo "$EXEC_OUTPUT"
|
||||
echo "$EXEC_OUTPUT" | grep -q "Hello, World!"
|
||||
|
||||
- name: Run scaffolded app integration test
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
yarn test
|
||||
|
||||
ci-create-app-e2e-status-check:
|
||||
if: always() && !cancelled()
|
||||
timeout-minutes: 5
|
||||
runs-on: ubuntu-latest
|
||||
needs: [changed-files-check, create-app-e2e]
|
||||
steps:
|
||||
- name: Fail job if any needs failed
|
||||
if: contains(needs.*.result, 'failure')
|
||||
run: exit 1
|
||||
@@ -0,0 +1,66 @@
|
||||
name: CI Twenty Standard Front Component
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
changed-files-check:
|
||||
uses: ./.github/workflows/changed-files.yaml
|
||||
with:
|
||||
files: |
|
||||
package.json
|
||||
yarn.lock
|
||||
packages/twenty-standard-application/**
|
||||
packages/twenty-sdk/**
|
||||
packages/twenty-shared/**
|
||||
|
||||
standard-front-component-build-check:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 10
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
- name: Build twenty-sdk
|
||||
run: npx nx build twenty-sdk
|
||||
- name: Build twenty-standard-application
|
||||
run: npx nx build twenty-standard-application
|
||||
- name: Check for pending standard front component build
|
||||
run: |
|
||||
if ! git diff --quiet -- packages/twenty-standard-application/src/build packages/twenty-standard-application/src/standard-front-component-build-manifest.ts; then
|
||||
echo "::error::Standard front component build output is out of date. Please run 'npx nx build twenty-standard-application' and commit the changes."
|
||||
echo ""
|
||||
echo "The following changes were detected:"
|
||||
echo "==================================================="
|
||||
git diff -- packages/twenty-standard-application/src/build packages/twenty-standard-application/src/standard-front-component-build-manifest.ts
|
||||
echo "==================================================="
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ci-twenty-standard-front-component-status-check:
|
||||
if: always() && !cancelled()
|
||||
timeout-minutes: 5
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
[
|
||||
changed-files-check,
|
||||
standard-front-component-build-check,
|
||||
]
|
||||
steps:
|
||||
- name: Fail job if any needs failed
|
||||
if: contains(needs.*.result, 'failure')
|
||||
run: exit 1
|
||||
@@ -188,13 +188,22 @@ IMPORTANT: Use Context7 for code generation, setup or configuration steps, or li
|
||||
- Descriptive test names: "should [behavior] when [condition]"
|
||||
- Clear mocks between tests with `jest.clearAllMocks()`
|
||||
|
||||
## CI Environment (GitHub Actions)
|
||||
## Dev Environment Setup
|
||||
|
||||
When running in CI, the dev environment is **not** pre-configured. Dependencies are installed but builds, env files, and databases are not set up.
|
||||
All dev environments (Claude Code web, Cursor, local) use one script:
|
||||
|
||||
- **Before running tests, builds, lint, type checks, or DB operations**, run: `bash packages/twenty-utils/setup-dev-env.sh`
|
||||
```bash
|
||||
bash packages/twenty-utils/setup-dev-env.sh
|
||||
```
|
||||
|
||||
This handles everything: starts Postgres + Redis (auto-detects local services vs Docker), creates databases, and copies `.env` files. Idempotent — safe to run multiple times.
|
||||
|
||||
- `--docker` — force Docker mode (uses `packages/twenty-docker/docker-compose.dev.yml`)
|
||||
- `--down` — stop services
|
||||
- `--reset` — wipe data and restart fresh
|
||||
- **Skip the setup script** for tasks that only read code — architecture questions, code review, documentation, etc.
|
||||
- The script is idempotent and safe to run multiple times.
|
||||
|
||||
**Note:** CI workflows (GitHub Actions) manage services via Actions service containers and run setup steps individually — they don't use this script.
|
||||
|
||||
## Important Files
|
||||
- `nx.json` - Nx workspace configuration with task definitions
|
||||
|
||||
@@ -136,6 +136,14 @@
|
||||
"cache": true,
|
||||
"dependsOn": ["^build"]
|
||||
},
|
||||
"set-local-version": {
|
||||
"executor": "nx:run-commands",
|
||||
"cache": false,
|
||||
"options": {
|
||||
"cwd": "{projectRoot}",
|
||||
"command": "npm pkg set version={args.releaseVersion}"
|
||||
}
|
||||
},
|
||||
"storybook:build": {
|
||||
"executor": "nx:run-commands",
|
||||
"cache": true,
|
||||
|
||||
@@ -164,6 +164,7 @@
|
||||
"tsc-alias": "^1.8.16",
|
||||
"tsconfig-paths": "^4.2.0",
|
||||
"tsx": "^4.17.0",
|
||||
"verdaccio": "^6.3.1",
|
||||
"vite": "^7.0.0",
|
||||
"vitest": "^4.0.18"
|
||||
},
|
||||
|
||||
@@ -24,6 +24,7 @@
|
||||
"command": "node dist/cli.cjs"
|
||||
}
|
||||
},
|
||||
"set-local-version": {},
|
||||
"typecheck": {},
|
||||
"lint": {},
|
||||
"test": {
|
||||
|
||||
@@ -18,6 +18,15 @@ const program = new Command(packageJson.name)
|
||||
'-m, --minimal',
|
||||
'Create only core entities (application-config and default-role)',
|
||||
)
|
||||
.option('-n, --name <name>', 'Application name (skips prompt)')
|
||||
.option(
|
||||
'-d, --display-name <displayName>',
|
||||
'Application display name (skips prompt)',
|
||||
)
|
||||
.option(
|
||||
'--description <description>',
|
||||
'Application description (skips prompt)',
|
||||
)
|
||||
.helpOption('-h, --help', 'Display this help message.')
|
||||
.action(
|
||||
async (
|
||||
@@ -25,6 +34,9 @@ const program = new Command(packageJson.name)
|
||||
options?: {
|
||||
exhaustive?: boolean;
|
||||
minimal?: boolean;
|
||||
name?: string;
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
},
|
||||
) => {
|
||||
const modeFlags = [options?.exhaustive, options?.minimal].filter(Boolean);
|
||||
@@ -47,9 +59,20 @@ const program = new Command(packageJson.name)
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
if (options?.name !== undefined && options.name.trim().length === 0) {
|
||||
console.error(chalk.red('Error: --name cannot be empty.'));
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
const mode: ScaffoldingMode = options?.minimal ? 'minimal' : 'exhaustive';
|
||||
|
||||
await new CreateAppCommand().execute(directory, mode);
|
||||
await new CreateAppCommand().execute({
|
||||
directory,
|
||||
mode,
|
||||
name: options?.name,
|
||||
displayName: options?.displayName,
|
||||
description: options?.description,
|
||||
});
|
||||
},
|
||||
);
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ import * as fs from 'fs-extra';
|
||||
import inquirer from 'inquirer';
|
||||
import kebabCase from 'lodash.kebabcase';
|
||||
import * as path from 'path';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
import {
|
||||
type ExampleOptions,
|
||||
@@ -15,16 +16,23 @@ import {
|
||||
|
||||
const CURRENT_EXECUTION_DIRECTORY = process.env.INIT_CWD || process.cwd();
|
||||
|
||||
type CreateAppOptions = {
|
||||
directory?: string;
|
||||
mode?: ScaffoldingMode;
|
||||
name?: string;
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
};
|
||||
|
||||
export class CreateAppCommand {
|
||||
async execute(
|
||||
directory?: string,
|
||||
mode: ScaffoldingMode = 'exhaustive',
|
||||
): Promise<void> {
|
||||
async execute(options: CreateAppOptions = {}): Promise<void> {
|
||||
try {
|
||||
const { appName, appDisplayName, appDirectory, appDescription } =
|
||||
await this.getAppInfos(directory);
|
||||
await this.getAppInfos(options);
|
||||
|
||||
const exampleOptions = this.resolveExampleOptions(mode);
|
||||
const exampleOptions = this.resolveExampleOptions(
|
||||
options.mode ?? 'exhaustive',
|
||||
);
|
||||
|
||||
await this.validateDirectory(appDirectory);
|
||||
|
||||
@@ -54,19 +62,25 @@ export class CreateAppCommand {
|
||||
}
|
||||
}
|
||||
|
||||
private async getAppInfos(directory?: string): Promise<{
|
||||
private async getAppInfos(options: CreateAppOptions): Promise<{
|
||||
appName: string;
|
||||
appDisplayName: string;
|
||||
appDescription: string;
|
||||
appDirectory: string;
|
||||
}> {
|
||||
const { directory } = options;
|
||||
|
||||
const hasName = isDefined(options.name) || isDefined(directory);
|
||||
const hasDisplayName = isDefined(options.displayName);
|
||||
const hasDescription = isDefined(options.description);
|
||||
|
||||
const { name, displayName, description } = await inquirer.prompt([
|
||||
{
|
||||
type: 'input',
|
||||
name: 'name',
|
||||
message: 'Application name:',
|
||||
when: () => !directory,
|
||||
default: 'my-awesome-app',
|
||||
when: () => !hasName,
|
||||
default: 'my-twenty-app',
|
||||
validate: (input) => {
|
||||
if (input.length === 0) return 'Application name is required';
|
||||
return true;
|
||||
@@ -76,25 +90,33 @@ export class CreateAppCommand {
|
||||
type: 'input',
|
||||
name: 'displayName',
|
||||
message: 'Application display name:',
|
||||
default: (answers: any) => {
|
||||
return convertToLabel(answers?.name ?? directory);
|
||||
when: () => !hasDisplayName,
|
||||
default: (answers: { name?: string }) => {
|
||||
return convertToLabel(
|
||||
answers?.name ?? options.name ?? directory ?? '',
|
||||
);
|
||||
},
|
||||
},
|
||||
{
|
||||
type: 'input',
|
||||
name: 'description',
|
||||
message: 'Application description (optional):',
|
||||
when: () => !hasDescription,
|
||||
default: '',
|
||||
},
|
||||
]);
|
||||
|
||||
const computedName = name ?? directory;
|
||||
const appName = (
|
||||
options.name ??
|
||||
name ??
|
||||
directory ??
|
||||
'my-twenty-app'
|
||||
).trim();
|
||||
|
||||
const appName = computedName.trim();
|
||||
const appDisplayName =
|
||||
(options.displayName ?? displayName)?.trim() || convertToLabel(appName);
|
||||
|
||||
const appDisplayName = displayName.trim();
|
||||
|
||||
const appDescription = description.trim();
|
||||
const appDescription = (options.description ?? description ?? '').trim();
|
||||
|
||||
const appDirectory = directory
|
||||
? path.join(CURRENT_EXECUTION_DIRECTORY, directory)
|
||||
|
||||
@@ -30,12 +30,12 @@ export const copyBaseApplicationProject = async ({
|
||||
includeExampleIntegrationTest: exampleOptions.includeExampleIntegrationTest,
|
||||
});
|
||||
|
||||
await createYarnLock(appDirectory);
|
||||
|
||||
await createGitignore(appDirectory);
|
||||
|
||||
await createPublicAssetDirectory(appDirectory);
|
||||
|
||||
await createYarnLock(appDirectory);
|
||||
|
||||
const sourceFolderPath = join(appDirectory, SRC_FOLDER);
|
||||
|
||||
await fs.ensureDir(sourceFolderPath);
|
||||
@@ -142,13 +142,6 @@ const createPublicAssetDirectory = async (appDirectory: string) => {
|
||||
await fs.ensureDir(join(appDirectory, ASSETS_DIR));
|
||||
};
|
||||
|
||||
const createYarnLock = async (appDirectory: string) => {
|
||||
const yarnLockContent = `# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
`;
|
||||
|
||||
await fs.writeFile(join(appDirectory, 'yarn.lock'), yarnLockContent);
|
||||
};
|
||||
const createGitignore = async (appDirectory: string) => {
|
||||
const gitignoreContent = `# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
@@ -590,6 +583,14 @@ export default defineApplication({
|
||||
await fs.writeFile(join(appDirectory, fileFolder ?? '', fileName), content);
|
||||
};
|
||||
|
||||
const createYarnLock = async (appDirectory: string) => {
|
||||
const yarnLockContent = `# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||
# yarn lockfile v1
|
||||
`;
|
||||
|
||||
await fs.writeFile(join(appDirectory, 'yarn.lock'), yarnLockContent);
|
||||
};
|
||||
|
||||
const createPackageJson = async ({
|
||||
appName,
|
||||
appDirectory,
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
# Development infrastructure services only (Postgres + Redis).
|
||||
# Use this when developing locally against the source code.
|
||||
#
|
||||
# Usage:
|
||||
# docker compose -f docker-compose.dev.yml up -d
|
||||
# docker compose -f docker-compose.dev.yml down # stop
|
||||
# docker compose -f docker-compose.dev.yml down -v # stop + wipe data
|
||||
|
||||
name: twenty-dev
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:16
|
||||
volumes:
|
||||
- dev-db-data:/var/lib/postgresql/data
|
||||
ports:
|
||||
- "5432:5432"
|
||||
environment:
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_PASSWORD: postgres
|
||||
POSTGRES_DB: default
|
||||
healthcheck:
|
||||
test: pg_isready -U postgres -h localhost -d postgres
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
restart: unless-stopped
|
||||
|
||||
redis:
|
||||
image: redis:7
|
||||
ports:
|
||||
- "6379:6379"
|
||||
command: ["--maxmemory-policy", "noeviction"]
|
||||
healthcheck:
|
||||
test: ["CMD", "redis-cli", "ping"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
restart: unless-stopped
|
||||
|
||||
volumes:
|
||||
dev-db-data:
|
||||
@@ -289,43 +289,57 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Environment-only mode:** If you set `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, add these variables to your `.env` file instead.
|
||||
</Warning>
|
||||
|
||||
## Logic Functions
|
||||
## Logic Functions & Code Interpreter
|
||||
|
||||
Twenty supports logic functions for workflows and custom logic. The execution environment is configured via the `SERVERLESS_TYPE` environment variable.
|
||||
Twenty supports logic functions for workflows and the code interpreter for AI data analysis. Both run user-provided code and require explicit configuration for security.
|
||||
|
||||
### Security Defaults
|
||||
|
||||
**In production (NODE_ENV=production):** Both logic functions and code interpreter default to **Disabled**. You must explicitly enable them with `LOGIC_FUNCTION_TYPE` and `CODE_INTERPRETER_TYPE` if you need these features.
|
||||
|
||||
**In development (NODE_ENV=development):** Both default to **LOCAL** for convenience when running locally.
|
||||
|
||||
<Warning>
|
||||
**Security Notice:** The local driver (`SERVERLESS_TYPE=LOCAL`) runs code directly on the host in a Node.js process with no sandboxing. It should only be used for trusted code in development. For production deployments handling untrusted code, we highly recommend using `SERVERLESS_TYPE=LAMBDA` or `SERVERLESS_TYPE=DISABLED`.
|
||||
**Security Notice:** The local driver (`LOGIC_FUNCTION_TYPE=LOCAL` or `CODE_INTERPRETER_TYPE=LOCAL`) runs code directly on the host in a Node.js process with no sandboxing. It should only be used for trusted code in development. For production deployments handling untrusted code, use `LOGIC_FUNCTION_TYPE=LAMBDA` or `CODE_INTERPRETER_TYPE=E2B` (with sandboxing), or keep them disabled.
|
||||
</Warning>
|
||||
|
||||
### Available Drivers
|
||||
### Logic Functions - Available Drivers
|
||||
|
||||
| Driver | Environment Variable | Use Case | Security Level |
|
||||
|--------|---------------------|----------|----------------|
|
||||
| Disabled | `SERVERLESS_TYPE=DISABLED` | Disable logic functions entirely | N/A |
|
||||
| Local | `SERVERLESS_TYPE=LOCAL` | Development and trusted environments | Low (no sandboxing) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Production with untrusted code | High (hardware-level isolation) |
|
||||
| Disabled | `LOGIC_FUNCTION_TYPE=DISABLED` | Disable logic functions entirely | N/A |
|
||||
| Local | `LOGIC_FUNCTION_TYPE=LOCAL` | Development and trusted environments | Low (no sandboxing) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Production with untrusted code | High (hardware-level isolation) |
|
||||
|
||||
### Recommended Configuration
|
||||
### Logic Functions - Recommended Configuration
|
||||
|
||||
**For development:**
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**For production (AWS):**
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**To disable logic functions:**
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### Code Interpreter - Available Drivers
|
||||
|
||||
| Driver | Environment Variable | Use Case | Security Level |
|
||||
|--------|---------------------|----------|----------------|
|
||||
| Disabled | `CODE_INTERPRETER_TYPE=DISABLED` | Disable AI code execution | N/A |
|
||||
| Local | `CODE_INTERPRETER_TYPE=LOCAL` | Development only | Low (no sandboxing) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Production with sandboxed execution | High (isolated sandbox) |
|
||||
|
||||
<Note>
|
||||
When using `SERVERLESS_TYPE=DISABLED`, any attempt to execute a logic function will return an error. This is useful if you want to run Twenty without logic function capabilities.
|
||||
When using `LOGIC_FUNCTION_TYPE=DISABLED` or `CODE_INTERPRETER_TYPE=DISABLED`, any attempt to execute will return an error. This is useful if you want to run Twenty without these capabilities.
|
||||
</Note>
|
||||
|
||||
@@ -297,46 +297,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**وضع بيئي فقط:** إذا كنت قد ضبطت `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`، فأضف هذه المتغيرات إلى ملف `.env` الخاص بك بدلاً من ذلك.
|
||||
</Warning>
|
||||
|
||||
## الوظائف المنطقية
|
||||
## الوظائف المنطقية ومفسر الشيفرة
|
||||
|
||||
تدعم Twenty الوظائف المنطقية لعمليات سير العمل والمنطق المخصص. يتم تكوين بيئة التنفيذ عبر متغير البيئة `SERVERLESS_TYPE`.
|
||||
تدعم Twenty الوظائف المنطقية لعمليات سير العمل ومفسر الشيفرة لتحليل بيانات الذكاء الاصطناعي. كلاهما يقوم بتشغيل الشيفرة المقدمة من المستخدم ويتطلب تهيئة صريحة لأغراض الأمان.
|
||||
|
||||
### الإعدادات الافتراضية للأمان
|
||||
|
||||
**في بيئة الإنتاج (NODE_ENV=production):** يكون الإعداد الافتراضي لكل من الوظائف المنطقية ومفسر الشيفرة هو **معطل**. يجب تمكينهما صراحة باستخدام `LOGIC_FUNCTION_TYPE` و`CODE_INTERPRETER_TYPE` إذا كنت تحتاج إلى هذه الميزات.
|
||||
|
||||
**في بيئة التطوير (NODE_ENV=development):** يكون الإعداد الافتراضي لكليهما **LOCAL** لتسهيل التشغيل محلياً.
|
||||
|
||||
<Warning>
|
||||
**ملاحظة أمنية:** يقوم برنامج التشغيل المحلي (`SERVERLESS_TYPE=LOCAL`) بتشغيل الشيفرة مباشرةً على المضيف ضمن عملية Node.js من دون عزل. يجب استخدامه فقط للشيفرة الموثوقة أثناء التطوير. بالنسبة لعمليات النشر الإنتاجية التي تتعامل مع شيفرة غير موثوق بها، نوصي بشدة باستخدام `SERVERLESS_TYPE=LAMBDA` أو `SERVERLESS_TYPE=DISABLED`.
|
||||
**ملاحظة أمنية:** يقوم برنامج التشغيل المحلي (`LOGIC_FUNCTION_TYPE=LOCAL` أو `CODE_INTERPRETER_TYPE=LOCAL`) بتشغيل الشيفرة مباشرة على المضيف ضمن عملية Node.js من دون عزل. يجب استخدامه فقط للشيفرة الموثوقة أثناء التطوير. لعمليات النشر الإنتاجية التي تتعامل مع شيفرة غير موثوقة، استخدم `LOGIC_FUNCTION_TYPE=LAMBDA` أو `CODE_INTERPRETER_TYPE=E2B` (مع وضع الحماية)، أو اتركهما مُعطَّلَيْن.
|
||||
</Warning>
|
||||
|
||||
### برامج التشغيل المتاحة
|
||||
### الوظائف المنطقية - برامج التشغيل المتاحة
|
||||
|
||||
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
|
||||
| -------------- | -------------------------- | ------------------------------- | ----------------------------- |
|
||||
| معطل | `SERVERLESS_TYPE=DISABLED` | تعطيل الوظائف المنطقية بالكامل | غير متاح |
|
||||
| محلي | `SERVERLESS_TYPE=LOCAL` | بيئات التطوير والبيئات الموثوقة | منخفض (من دون عزل) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | الإنتاج مع شيفرة غير موثوق بها | مرتفع (عزل على مستوى الأجهزة) |
|
||||
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
|
||||
| -------------- | ------------------------------ | ------------------------------- | ----------------------------- |
|
||||
| معطل | `LOGIC_FUNCTION_TYPE=DISABLED` | تعطيل الوظائف المنطقية بالكامل | غير متاح |
|
||||
| محلي | `LOGIC_FUNCTION_TYPE=LOCAL` | بيئات التطوير والبيئات الموثوقة | منخفض (من دون عزل) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | الإنتاج مع شيفرة غير موثوق بها | مرتفع (عزل على مستوى الأجهزة) |
|
||||
|
||||
### التكوين الموصى به
|
||||
### الوظائف المنطقية - الإعداد الموصى به
|
||||
|
||||
**للتطوير:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**للإنتاج (AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**لتعطيل الوظائف المنطقية:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### مفسر الشيفرة - برامج التشغيل المتاحة
|
||||
|
||||
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
|
||||
| -------------- | -------------------------------- | ------------------------------------- | ------------------------ |
|
||||
| معطل | `CODE_INTERPRETER_TYPE=DISABLED` | تعطيل تنفيذ الشيفرة بالذكاء الاصطناعي | غير متاح |
|
||||
| محلي | `CODE_INTERPRETER_TYPE=LOCAL` | للتطوير فقط | منخفض (من دون عزل) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | الإنتاج مع تنفيذ ضمن صندوق رمل معزول | مرتفعة (صندوق رمل معزول) |
|
||||
|
||||
<Note>
|
||||
عند استخدام `SERVERLESS_TYPE=DISABLED`، ستؤدي أي محاولة لتنفيذ وظيفة منطقية إلى إرجاع خطأ. يكون هذا مفيدًا إذا كنت ترغب في تشغيل Twenty من دون إمكانات الوظائف المنطقية.
|
||||
عند استخدام `LOGIC_FUNCTION_TYPE=DISABLED` أو `CODE_INTERPRETER_TYPE=DISABLED`، سترجع أي محاولة للتنفيذ خطأً. يكون هذا مفيدًا إذا كنت ترغب في تشغيل Twenty من دون هذه الإمكانات.
|
||||
</Note>
|
||||
|
||||
@@ -297,46 +297,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Nur-Umgebungsmodus:** Wenn Sie `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false` setzen, fügen Sie diese Variablen stattdessen Ihrer `.env`-Datei hinzu.
|
||||
</Warning>
|
||||
|
||||
## Logikfunktionen
|
||||
## Logikfunktionen & Code-Interpreter
|
||||
|
||||
Twenty unterstützt Logikfunktionen für Workflows und benutzerdefinierte Logik. Die Ausführungsumgebung wird über die Umgebungsvariable `SERVERLESS_TYPE` konfiguriert.
|
||||
Twenty unterstützt Logikfunktionen für Workflows und den Code-Interpreter für KI-Datenanalyse. Beide führen vom Benutzer bereitgestellten Code aus und erfordern aus Sicherheitsgründen eine explizite Konfiguration.
|
||||
|
||||
### Sicherheits-Standardeinstellungen
|
||||
|
||||
**In Produktion (NODE_ENV=production):** Sowohl Logikfunktionen als auch der Code-Interpreter sind standardmäßig **deaktiviert**. Sie müssen sie, wenn Sie diese Funktionen benötigen, explizit mit `LOGIC_FUNCTION_TYPE` und `CODE_INTERPRETER_TYPE` aktivieren.
|
||||
|
||||
**In der Entwicklung (NODE_ENV=development):** Beide sind der Einfachheit halber beim lokalen Betrieb standardmäßig **LOCAL**.
|
||||
|
||||
<Warning>
|
||||
**Sicherheitshinweis:** Der lokale Treiber (`SERVERLESS_TYPE=LOCAL`) führt Code ohne Sandbox direkt auf dem Host in einem Node.js-Prozess aus. Er sollte nur für vertrauenswürdigen Code in der Entwicklung verwendet werden. Für Produktivbereitstellungen, die nicht vertrauenswürdigen Code verarbeiten, empfehlen wir nachdrücklich, `SERVERLESS_TYPE=LAMBDA` oder `SERVERLESS_TYPE=DISABLED` zu verwenden.
|
||||
**Sicherheitshinweis:** Der lokale Treiber (`LOGIC_FUNCTION_TYPE=LOCAL` oder `CODE_INTERPRETER_TYPE=LOCAL`) führt Code ohne Sandbox direkt auf dem Host in einem Node.js-Prozess aus. Er sollte nur für vertrauenswürdigen Code in der Entwicklung verwendet werden. Für Produktionsbereitstellungen, die nicht vertrauenswürdigen Code verarbeiten, verwenden Sie `LOGIC_FUNCTION_TYPE=LAMBDA` oder `CODE_INTERPRETER_TYPE=E2B` (mit Sandbox-Isolierung), oder lassen Sie sie deaktiviert.
|
||||
</Warning>
|
||||
|
||||
### Verfügbare Treiber
|
||||
### Logikfunktionen - Verfügbare Treiber
|
||||
|
||||
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
|
||||
| ----------- | -------------------------- | -------------------------------------------------- | ---------------------------------- |
|
||||
| Deaktiviert | `SERVERLESS_TYPE=DISABLED` | Logikfunktionen vollständig deaktivieren | N/A |
|
||||
| Lokal | `SERVERLESS_TYPE=LOCAL` | Entwicklung und vertrauenswürdige Umgebungen | Niedrig (keine Sandbox) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produktivbetrieb mit nicht vertrauenswürdigem Code | Hoch (Isolation auf Hardwareebene) |
|
||||
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
|
||||
| ----------- | ------------------------------ | -------------------------------------------------- | ---------------------------------- |
|
||||
| Deaktiviert | `LOGIC_FUNCTION_TYPE=DISABLED` | Logikfunktionen vollständig deaktivieren | N/A |
|
||||
| Lokal | `LOGIC_FUNCTION_TYPE=LOCAL` | Entwicklung und vertrauenswürdige Umgebungen | Niedrig (keine Sandbox) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produktivbetrieb mit nicht vertrauenswürdigem Code | Hoch (Isolation auf Hardwareebene) |
|
||||
|
||||
### Empfohlene Konfiguration
|
||||
### Logikfunktionen - Empfohlene Konfiguration
|
||||
|
||||
**Für die Entwicklung:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**Für den Produktivbetrieb (AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Zum Deaktivieren von Logikfunktionen:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### Code-Interpreter - Verfügbare Treiber
|
||||
|
||||
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
|
||||
| ----------- | -------------------------------- | ------------------------------------------ | ------------------------ |
|
||||
| Deaktiviert | `CODE_INTERPRETER_TYPE=DISABLED` | KI-Codeausführung deaktivieren | N/A |
|
||||
| Lokal | `CODE_INTERPRETER_TYPE=LOCAL` | Nur für die Entwicklung | Niedrig (keine Sandbox) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produktion mit Ausführung in einer Sandbox | Hoch (isolierte Sandbox) |
|
||||
|
||||
<Note>
|
||||
Bei Verwendung von `SERVERLESS_TYPE=DISABLED` führt jeder Versuch, eine Logikfunktion auszuführen, zu einem Fehler. Dies ist nützlich, wenn Sie Twenty ohne Unterstützung für Logikfunktionen betreiben möchten.
|
||||
Bei Verwendung von `LOGIC_FUNCTION_TYPE=DISABLED` oder `CODE_INTERPRETER_TYPE=DISABLED` führt jeder Ausführungsversuch zu einem Fehler. Dies ist nützlich, wenn Sie Twenty ohne diese Funktionen betreiben möchten.
|
||||
</Note>
|
||||
|
||||
@@ -296,46 +296,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Modalità solo ambiente:** Se imposti `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, aggiungi queste variabili al tuo file `.env` invece.
|
||||
</Warning>
|
||||
|
||||
## Funzioni logiche
|
||||
## Funzioni logiche & interprete del codice
|
||||
|
||||
Twenty supporta le funzioni logiche per i workflow e la logica personalizzata. L'ambiente di esecuzione è configurato tramite la variabile di ambiente `SERVERLESS_TYPE`.
|
||||
Twenty supporta le funzioni logiche per i workflow e l'interprete del codice per l'analisi dei dati con IA. Entrambi eseguono codice fornito dall'utente e richiedono una configurazione esplicita per motivi di sicurezza.
|
||||
|
||||
### Impostazioni di sicurezza predefinite
|
||||
|
||||
**In produzione (NODE_ENV=production):** Sia le funzioni logiche sia l'interprete del codice hanno come impostazione predefinita **Disabilitato**. È necessario abilitarli esplicitamente con `LOGIC_FUNCTION_TYPE` e `CODE_INTERPRETER_TYPE` se queste funzionalità sono necessarie.
|
||||
|
||||
**In sviluppo (NODE_ENV=development):** Entrambi sono impostati su **LOCAL** per comodità quando vengono eseguiti in locale.
|
||||
|
||||
<Warning>
|
||||
**Avviso di sicurezza:** Il driver locale (`SERVERLESS_TYPE=LOCAL`) esegue il codice direttamente sull'host in un processo Node.js senza sandboxing. Dovrebbe essere utilizzato solo per codice attendibile in fase di sviluppo. Per le distribuzioni in produzione che gestiscono codice non attendibile, consigliamo vivamente di usare `SERVERLESS_TYPE=LAMBDA` o `SERVERLESS_TYPE=DISABLED`.
|
||||
**Avviso di sicurezza:** Il driver locale (`LOGIC_FUNCTION_TYPE=LOCAL` o `CODE_INTERPRETER_TYPE=LOCAL`) esegue il codice direttamente sull'host in un processo Node.js senza sandboxing. Dovrebbe essere utilizzato solo per codice attendibile in fase di sviluppo. Per le distribuzioni in produzione che gestiscono codice non affidabile, usa `LOGIC_FUNCTION_TYPE=LAMBDA` o `CODE_INTERPRETER_TYPE=E2B` (con sandboxing), oppure lasciali disabilitati.
|
||||
</Warning>
|
||||
|
||||
### Driver disponibili
|
||||
### Funzioni logiche - Driver disponibili
|
||||
|
||||
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
|
||||
| ------------ | -------------------------- | -------------------------------------------- | ------------------------------------ |
|
||||
| Disabilitato | `SERVERLESS_TYPE=DISABLED` | Disabilita completamente le funzioni logiche | N/A |
|
||||
| Locale | `SERVERLESS_TYPE=LOCAL` | Ambienti di sviluppo e attendibili | Basso (nessuna sandbox) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produzione con codice non attendibile | Alto (isolamento a livello hardware) |
|
||||
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
|
||||
| ------------ | ------------------------------ | -------------------------------------------- | ------------------------------------ |
|
||||
| Disabilitato | `LOGIC_FUNCTION_TYPE=DISABLED` | Disabilita completamente le funzioni logiche | N/A |
|
||||
| Locale | `LOGIC_FUNCTION_TYPE=LOCAL` | Ambienti di sviluppo e attendibili | Basso (nessuna sandbox) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produzione con codice non attendibile | Alto (isolamento a livello hardware) |
|
||||
|
||||
### Configurazione consigliata
|
||||
### Funzioni logiche - Configurazione consigliata
|
||||
|
||||
**Per lo sviluppo:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**Per la produzione (AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Per disabilitare le funzioni logiche:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### Interprete del codice - Driver disponibili
|
||||
|
||||
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
|
||||
| ------------ | -------------------------------- | ------------------------------------- | ----------------------- |
|
||||
| Disabilitato | `CODE_INTERPRETER_TYPE=DISABLED` | Disabilita l'esecuzione del codice IA | N/A |
|
||||
| Locale | `CODE_INTERPRETER_TYPE=LOCAL` | Solo per lo sviluppo | Basso (nessuna sandbox) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produzione con esecuzione in sandbox | Alta (sandbox isolata) |
|
||||
|
||||
<Note>
|
||||
Quando si utilizza `SERVERLESS_TYPE=DISABLED`, qualsiasi tentativo di eseguire una funzione logica restituirà un errore. Ciò è utile se si desidera eseguire Twenty senza il supporto per le funzioni logiche.
|
||||
Quando si utilizza `LOGIC_FUNCTION_TYPE=DISABLED` o `CODE_INTERPRETER_TYPE=DISABLED`, qualsiasi tentativo di esecuzione restituirà un errore. Ciò è utile se si desidera eseguire Twenty senza queste funzionalità.
|
||||
</Note>
|
||||
|
||||
@@ -297,46 +297,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Modo somente ambiente:** Se você definir `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, adicione estas variáveis ao seu arquivo `.env`.
|
||||
</Warning>
|
||||
|
||||
## Funções lógicas
|
||||
## Funções lógicas e interpretador de código
|
||||
|
||||
O Twenty oferece suporte a funções lógicas para fluxos de trabalho e lógica personalizada. O ambiente de execução é configurado por meio da variável de ambiente `SERVERLESS_TYPE`.
|
||||
O Twenty oferece suporte a funções lógicas para fluxos de trabalho e ao interpretador de código para análise de dados com IA. Ambos executam código fornecido pelo usuário e exigem configuração explícita por motivos de segurança.
|
||||
|
||||
### Padrões de segurança
|
||||
|
||||
**Em produção (NODE_ENV=production):** Tanto as funções lógicas quanto o interpretador de código têm como padrão **Desativado**. Você deve habilitá-los explicitamente com `LOGIC_FUNCTION_TYPE` e `CODE_INTERPRETER_TYPE` se precisar desses recursos.
|
||||
|
||||
**Em desenvolvimento (NODE_ENV=development):** Ambos têm como padrão **LOCAL** por conveniência ao executar localmente.
|
||||
|
||||
<Warning>
|
||||
**Aviso de segurança:** O driver local (`SERVERLESS_TYPE=LOCAL`) executa código diretamente no host em um processo Node.js sem sandbox. Deve ser usado apenas para código confiável em desenvolvimento. Para implantações de produção que lidam com código não confiável, recomendamos fortemente usar `SERVERLESS_TYPE=LAMBDA` ou `SERVERLESS_TYPE=DISABLED`.
|
||||
**Aviso de segurança:** O driver local (`LOGIC_FUNCTION_TYPE=LOCAL` ou `CODE_INTERPRETER_TYPE=LOCAL`) executa código diretamente no host em um processo Node.js sem sandbox. Deve ser usado apenas para código confiável em desenvolvimento. Para implantações de produção que lidam com código não confiável, use `LOGIC_FUNCTION_TYPE=LAMBDA` ou `CODE_INTERPRETER_TYPE=E2B` (com sandbox), ou mantenha-os desativados.
|
||||
</Warning>
|
||||
|
||||
### Drivers disponíveis
|
||||
### Funções lógicas - Drivers disponíveis
|
||||
|
||||
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
|
||||
| ---------- | -------------------------- | ------------------------------------------ | -------------------------------------- |
|
||||
| Desativado | `SERVERLESS_TYPE=DISABLED` | Desativar completamente as funções lógicas | N/A |
|
||||
| Local | `SERVERLESS_TYPE=LOCAL` | Desenvolvimento e ambientes confiáveis | Baixo (sem sandbox) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produção com código não confiável | Alto (isolamento em nível de hardware) |
|
||||
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
|
||||
| ---------- | ------------------------------ | ------------------------------------------ | -------------------------------------- |
|
||||
| Desativado | `LOGIC_FUNCTION_TYPE=DISABLED` | Desativar completamente as funções lógicas | N/A |
|
||||
| Local | `LOGIC_FUNCTION_TYPE=LOCAL` | Desenvolvimento e ambientes confiáveis | Baixo (sem sandbox) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produção com código não confiável | Alto (isolamento em nível de hardware) |
|
||||
|
||||
### Configuração recomendada
|
||||
### Funções lógicas - Configuração recomendada
|
||||
|
||||
**Para desenvolvimento:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**Para produção (AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Para desativar as funções lógicas:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### Interpretador de código - Drivers disponíveis
|
||||
|
||||
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
|
||||
| ---------- | -------------------------------- | ------------------------------------ | ---------------------- |
|
||||
| Desativado | `CODE_INTERPRETER_TYPE=DISABLED` | Desativar a execução de código de IA | N/A |
|
||||
| Local | `CODE_INTERPRETER_TYPE=LOCAL` | Apenas para desenvolvimento | Baixo (sem sandbox) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produção com execução em sandbox | Alto (sandbox isolado) |
|
||||
|
||||
<Note>
|
||||
Ao usar `SERVERLESS_TYPE=DISABLED`, qualquer tentativa de executar uma função lógica retornará um erro. Isso é útil se você quiser executar o Twenty sem recursos de funções lógicas.
|
||||
Ao usar `LOGIC_FUNCTION_TYPE=DISABLED` ou `CODE_INTERPRETER_TYPE=DISABLED`, qualquer tentativa de execução retornará um erro. Isso é útil se você quiser executar o Twenty sem esses recursos.
|
||||
</Note>
|
||||
|
||||
@@ -297,46 +297,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Mod doar pentru mediu:** Dacă setați `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, adăugați aceste variabile în fișierul dvs. `.env` în schimb.
|
||||
</Warning>
|
||||
|
||||
## Funcții logice
|
||||
## Funcții logice și interpretor de cod
|
||||
|
||||
Twenty acceptă funcții logice pentru fluxuri de lucru și logică personalizată. Mediul de execuție este configurat prin variabila de mediu `SERVERLESS_TYPE`.
|
||||
Twenty acceptă funcții logice pentru fluxuri de lucru și interpretorul de cod pentru analiza datelor cu AI. Ambele rulează cod furnizat de utilizator și necesită o configurare explicită din motive de securitate.
|
||||
|
||||
### Valori implicite de securitate
|
||||
|
||||
**În producție (NODE_ENV=production):** Atât funcțiile logice, cât și interpretorul de cod au implicit valoarea **Dezactivat**. Trebuie să le activezi explicit cu `LOGIC_FUNCTION_TYPE` și `CODE_INTERPRETER_TYPE` dacă ai nevoie de aceste funcționalități.
|
||||
|
||||
**În dezvoltare (NODE_ENV=development):** Ambele au implicit valoarea **LOCAL** pentru comoditate când rulezi local.
|
||||
|
||||
<Warning>
|
||||
**Atenționare de securitate:** Driverul local (`SERVERLESS_TYPE=LOCAL`) rulează codul direct pe gazdă într-un proces Node.js, fără sandboxing. Ar trebui utilizat doar pentru cod de încredere, în dezvoltare. Pentru implementări de producție care gestionează cod neverificat, recomandăm cu tărie utilizarea `SERVERLESS_TYPE=LAMBDA` sau `SERVERLESS_TYPE=DISABLED`.
|
||||
**Atenționare de securitate:** Driverul local (`LOGIC_FUNCTION_TYPE=LOCAL` sau `CODE_INTERPRETER_TYPE=LOCAL`) rulează codul direct pe gazdă într-un proces Node.js, fără sandboxing. Ar trebui utilizat doar pentru cod de încredere, în dezvoltare. Pentru implementări în producție care gestionează cod neverificat, folosiți `LOGIC_FUNCTION_TYPE=LAMBDA` sau `CODE_INTERPRETER_TYPE=E2B` (cu sandboxing) ori păstrați-le dezactivate.
|
||||
</Warning>
|
||||
|
||||
### Drivere disponibile
|
||||
### Funcții logice - Drivere disponibile
|
||||
|
||||
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
|
||||
| ---------- | -------------------------- | ------------------------------------- | -------------------------------------- |
|
||||
| Dezactivat | `SERVERLESS_TYPE=DISABLED` | Dezactivează complet funcțiile logice | N/A |
|
||||
| Local | `SERVERLESS_TYPE=LOCAL` | Dezvoltare și medii de încredere | Scăzut (fără sandboxing) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Producție cu cod neverificat | Ridicat (izolare la nivel de hardware) |
|
||||
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
|
||||
| ---------- | ------------------------------ | ------------------------------------- | -------------------------------------- |
|
||||
| Dezactivat | `LOGIC_FUNCTION_TYPE=DISABLED` | Dezactivează complet funcțiile logice | N/A |
|
||||
| Local | `LOGIC_FUNCTION_TYPE=LOCAL` | Dezvoltare și medii de încredere | Scăzut (fără sandboxing) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Producție cu cod neverificat | Ridicat (izolare la nivel de hardware) |
|
||||
|
||||
### Configurație recomandată
|
||||
### Funcții logice - Configurare recomandată
|
||||
|
||||
**Pentru dezvoltare:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**Pentru producție (AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Pentru a dezactiva funcțiile logice:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### Interpretor de cod - Drivere disponibile
|
||||
|
||||
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
|
||||
| ---------- | -------------------------------- | ---------------------------------------- | ------------------------ |
|
||||
| Dezactivat | `CODE_INTERPRETER_TYPE=DISABLED` | Dezactivați execuția codului de către AI | N/A |
|
||||
| Local | `CODE_INTERPRETER_TYPE=LOCAL` | Doar pentru dezvoltare | Scăzut (fără sandboxing) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Producție cu execuție în sandbox | Ridicat (sandbox izolat) |
|
||||
|
||||
<Note>
|
||||
Când se utilizează `SERVERLESS_TYPE=DISABLED`, orice încercare de a executa o funcție logică va returna o eroare. Acest lucru este util dacă doriți să rulați Twenty fără capabilități de funcții logice.
|
||||
Când utilizați `LOGIC_FUNCTION_TYPE=DISABLED` sau `CODE_INTERPRETER_TYPE=DISABLED`, orice încercare de execuție va returna o eroare. Acest lucru este util dacă doriți să rulați Twenty fără aceste capabilități.
|
||||
</Note>
|
||||
|
||||
@@ -296,46 +296,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Режим только для среды:** если вы установили `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, добавьте эти переменные в свой `.env` файл вместо этого.
|
||||
</Warning>
|
||||
|
||||
## Логические функции
|
||||
## Логические функции и интерпретатор кода
|
||||
|
||||
Twenty поддерживает логические функции для рабочих процессов и пользовательской логики. Среда выполнения настраивается через переменную окружения `SERVERLESS_TYPE`.
|
||||
Twenty поддерживает логические функции для рабочих процессов и интерпретатор кода для анализа данных ИИ. Оба запускают предоставленный пользователем код и требуют явной настройки в целях безопасности.
|
||||
|
||||
### Настройки безопасности по умолчанию
|
||||
|
||||
**В продакшене (NODE_ENV=production):** логические функции и интерпретатор кода по умолчанию — **Отключено**. Если вам нужны эти функции, вы должны явно включить их с помощью `LOGIC_FUNCTION_TYPE` и `CODE_INTERPRETER_TYPE`.
|
||||
|
||||
**В разработке (NODE_ENV=development):** оба по умолчанию — **LOCAL** для удобства при локальном запуске.
|
||||
|
||||
<Warning>
|
||||
**Уведомление о безопасности:** локальный драйвер (`SERVERLESS_TYPE=LOCAL`) выполняет код напрямую на хосте в процессе Node.js без изоляции. Его следует использовать только для доверенного кода в разработке. Для промышленных развертываний, обрабатывающих недоверенный код, настоятельно рекомендуем использовать `SERVERLESS_TYPE=LAMBDA` или `SERVERLESS_TYPE=DISABLED`.
|
||||
**Уведомление о безопасности:** локальный драйвер (`LOGIC_FUNCTION_TYPE=LOCAL` или `CODE_INTERPRETER_TYPE=LOCAL`) выполняет код напрямую на хосте в процессе Node.js без изоляции. Его следует использовать только для доверенного кода в разработке. Для рабочих развёртываний, обрабатывающих недоверенный код, используйте `LOGIC_FUNCTION_TYPE=LAMBDA` или `CODE_INTERPRETER_TYPE=E2B` (с песочницей) либо оставьте их отключёнными.
|
||||
</Warning>
|
||||
|
||||
### Доступные драйверы
|
||||
### Логические функции — доступные драйверы
|
||||
|
||||
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
|
||||
| --------- | -------------------------- | -------------------------------------- | ----------------------------------------- |
|
||||
| Отключено | `SERVERLESS_TYPE=DISABLED` | Полностью отключить логические функции | Н/Д |
|
||||
| Локальный | `SERVERLESS_TYPE=LOCAL` | Разработка и доверенные среды | Низкий (без изоляции) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Продакшн с недоверенным кодом | Высокий (изоляция на уровне оборудования) |
|
||||
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
|
||||
| --------- | ------------------------------ | -------------------------------------- | ----------------------------------------- |
|
||||
| Отключено | `LOGIC_FUNCTION_TYPE=DISABLED` | Полностью отключить логические функции | Н/Д |
|
||||
| Локальный | `LOGIC_FUNCTION_TYPE=LOCAL` | Разработка и доверенные среды | Низкий (без изоляции) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Продакшн с недоверенным кодом | Высокий (изоляция на уровне оборудования) |
|
||||
|
||||
### Рекомендуемая конфигурация
|
||||
### Логические функции — рекомендуемая конфигурация
|
||||
|
||||
**Для разработки:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**Для продакшна (AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Чтобы отключить логические функции:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### Интерпретатор кода — доступные драйверы
|
||||
|
||||
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
|
||||
| --------- | -------------------------------- | ----------------------------------------------------- | --------------------------------- |
|
||||
| Отключено | `CODE_INTERPRETER_TYPE=DISABLED` | Отключить выполнение кода ИИ | Н/Д |
|
||||
| Локальный | `CODE_INTERPRETER_TYPE=LOCAL` | Только для разработки | Низкий (без изоляции) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Рабочая среда с изолированным исполнением в песочнице | Высокий (изолированная песочница) |
|
||||
|
||||
<Note>
|
||||
При использовании `SERVERLESS_TYPE=DISABLED` любая попытка выполнить логическую функцию вернет ошибку. Это полезно, если вы хотите запускать Twenty без возможностей логических функций.
|
||||
При использовании `LOGIC_FUNCTION_TYPE=DISABLED` или `CODE_INTERPRETER_TYPE=DISABLED` любая попытка выполнения вернёт ошибку. Это полезно, если вы хотите запускать Twenty без этих возможностей.
|
||||
</Note>
|
||||
|
||||
@@ -297,46 +297,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Çevre-yalnızca modu:** `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false` ayarlarsanız, bu değişkenleri `.env` dosyanıza ekleyin.
|
||||
</Warning>
|
||||
|
||||
## Mantıksal işlevler
|
||||
## Mantıksal İşlevler ve Kod Yorumlayıcısı
|
||||
|
||||
Twenty, iş akışları ve özel mantık için mantıksal işlevleri destekler. Yürütme ortamı, `SERVERLESS_TYPE` ortam değişkeni aracılığıyla yapılandırılır.
|
||||
Twenty, iş akışları için mantıksal işlevleri ve yapay zekâ veri analizi için kod yorumlayıcısını destekler. Her ikisi de kullanıcı tarafından sağlanan kodu çalıştırır ve güvenlik için açık bir yapılandırma gerektirir.
|
||||
|
||||
### Güvenlik Varsayılanları
|
||||
|
||||
**Üretimde (NODE_ENV=production):** Hem mantıksal işlevler hem de kod yorumlayıcı varsayılan olarak **Devre Dışı**dır. Bu özelliklere ihtiyacınız varsa, onları `LOGIC_FUNCTION_TYPE` ve `CODE_INTERPRETER_TYPE` ile açıkça etkinleştirmeniz gerekir.
|
||||
|
||||
**Geliştirmede (NODE_ENV=development):** Yerel olarak çalıştırırken kolaylık olması için her ikisinin varsayılanı **LOCAL**dır.
|
||||
|
||||
<Warning>
|
||||
**Güvenlik Notu:** Yerel sürücü (`SERVERLESS_TYPE=LOCAL`), herhangi bir sandbox olmadan kodu ana makinede doğrudan bir Node.js sürecinde çalıştırır. Yalnızca geliştirirken güvenilen kod için kullanılmalıdır. Güvenilmeyen kodu işleyen üretim dağıtımları için `SERVERLESS_TYPE=LAMBDA` veya `SERVERLESS_TYPE=DISABLED` kullanmanızı şiddetle öneririz.
|
||||
**Güvenlik Notu:** Yerel sürücü (`LOGIC_FUNCTION_TYPE=LOCAL` veya `CODE_INTERPRETER_TYPE=LOCAL`), herhangi bir sandbox olmadan kodu ana makinede doğrudan bir Node.js sürecinde çalıştırır. Yalnızca geliştirirken güvenilen kod için kullanılmalıdır. Üretim dağıtımlarında güvenilmeyen kodu işlerken, `LOGIC_FUNCTION_TYPE=LAMBDA` veya `CODE_INTERPRETER_TYPE=E2B` (korumalı alanla) kullanın ya da bunları devre dışı bırakın.
|
||||
</Warning>
|
||||
|
||||
### Kullanılabilir Sürücüler
|
||||
### Mantıksal İşlevler - Kullanılabilir Sürücüler
|
||||
|
||||
| Sürücü | Ortam Değişkeni | Kullanım alanı | Güvenlik Düzeyi |
|
||||
| ---------- | -------------------------- | ---------------------------------------------- | ------------------------------------ |
|
||||
| Devre dışı | `SERVERLESS_TYPE=DISABLED` | Mantıksal işlevleri tamamen devre dışı bırakın | Uygulanamaz |
|
||||
| Yerel | `SERVERLESS_TYPE=LOCAL` | Geliştirme ve güvenilir ortamlar | Düşük (sandbox yok) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Güvenilmeyen kodla üretim | Yüksek (donanım düzeyinde izolasyon) |
|
||||
| Sürücü | Ortam Değişkeni | Kullanım alanı | Güvenlik Düzeyi |
|
||||
| ---------- | ------------------------------ | ---------------------------------------------- | ------------------------------------ |
|
||||
| Devre dışı | `LOGIC_FUNCTION_TYPE=DISABLED` | Mantıksal işlevleri tamamen devre dışı bırakın | Uygulanamaz |
|
||||
| Yerel | `LOGIC_FUNCTION_TYPE=LOCAL` | Geliştirme ve güvenilir ortamlar | Düşük (sandbox yok) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Güvenilmeyen kodla üretim | Yüksek (donanım düzeyinde izolasyon) |
|
||||
|
||||
### Önerilen Yapılandırma
|
||||
### Mantıksal İşlevler - Önerilen Yapılandırma
|
||||
|
||||
**Geliştirme için:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**Üretim için (AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Mantıksal işlevleri devre dışı bırakmak için:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### Kod Yorumlayıcısı - Kullanılabilir Sürücüler
|
||||
|
||||
| Sürücü | Ortam Değişkeni | Kullanım Senaryosu | Güvenlik Düzeyi |
|
||||
| ---------- | -------------------------------- | --------------------------------------------- | --------------------------------- |
|
||||
| Devre dışı | `CODE_INTERPRETER_TYPE=DISABLED` | Yapay zekâ kod yürütmesini devre dışı bırakın | Uygulanamaz |
|
||||
| Yerel | `CODE_INTERPRETER_TYPE=LOCAL` | Yalnızca geliştirme için | Düşük (sandbox yok) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Korumalı alanlı yürütmeyle üretim | Yüksek (yalıtılmış korumalı alan) |
|
||||
|
||||
<Note>
|
||||
`SERVERLESS_TYPE=DISABLED` kullanıldığında, bir mantıksal işlevi yürütmeye yönelik herhangi bir girişim bir hata döndürür. Bu, Twenty'yi mantıksal işlev yetenekleri olmadan çalıştırmak istiyorsanız kullanışlıdır.
|
||||
`LOGIC_FUNCTION_TYPE=DISABLED` veya `CODE_INTERPRETER_TYPE=DISABLED` kullanıldığında, herhangi bir yürütme girişimi bir hata döndürür. Bu, Twenty'yi bu yetenekler olmadan çalıştırmak istiyorsanız kullanışlıdır.
|
||||
</Note>
|
||||
|
||||
@@ -297,46 +297,60 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**仅限环境模式:** 如果你设置 `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`,请将这些变量添加到 `.env` 文件中。
|
||||
</Warning>
|
||||
|
||||
## 逻辑函数
|
||||
## 逻辑函数与代码解释器
|
||||
|
||||
Twenty 支持用于工作流和自定义逻辑的逻辑函数。 执行环境通过 `SERVERLESS_TYPE` 环境变量进行配置。
|
||||
Twenty 支持用于工作流的逻辑函数,以及用于 AI 数据分析的代码解释器。 二者都会运行用户提供的代码,并要求进行显式配置以确保安全。
|
||||
|
||||
### 安全默认设置
|
||||
|
||||
**在生产环境(NODE_ENV=production):** 逻辑函数和代码解释器的默认设置为**禁用**。 如需这些功能,必须通过 `LOGIC_FUNCTION_TYPE` 和 `CODE_INTERPRETER_TYPE` 显式启用它们。
|
||||
|
||||
**在开发环境(NODE_ENV=development):** 为方便在本地运行,二者默认均为**LOCAL**。
|
||||
|
||||
<Warning>
|
||||
\*\*安全提示:\*\*本地驱动(`SERVERLESS_TYPE=LOCAL`)在没有沙箱的情况下,在主机上的 Node.js 进程中直接运行代码。 它应仅在开发环境中用于可信代码。 对于在生产环境中处理不受信任代码的部署,我们强烈建议使用 `SERVERLESS_TYPE=LAMBDA` 或 `SERVERLESS_TYPE=DISABLED`。
|
||||
**安全提示:** 本地驱动(`LOGIC_FUNCTION_TYPE=LOCAL` 或 `CODE_INTERPRETER_TYPE=LOCAL`)会在没有沙箱的情况下,在主机上的 Node.js 进程中直接运行代码。 它应仅在开发环境中用于可信代码。 对于在生产环境中处理不受信任代码的部署,请使用 `LOGIC_FUNCTION_TYPE=LAMBDA` 或 `CODE_INTERPRETER_TYPE=E2B`(使用沙盒),或将它们保持禁用。
|
||||
</Warning>
|
||||
|
||||
### 可用驱动
|
||||
### 逻辑函数 - 可用驱动程序
|
||||
|
||||
| 驱动 | 环境变量 | 用例 | 安全级别 |
|
||||
| ------ | -------------------------- | -------------- | -------- |
|
||||
| 禁用 | `SERVERLESS_TYPE=DISABLED` | 完全禁用逻辑函数 | 不适用 |
|
||||
| 本地 | `SERVERLESS_TYPE=LOCAL` | 开发和可信环境 | 低(无沙箱) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | 生产环境(处理不受信任代码) | 高(硬件级隔离) |
|
||||
| 驱动 | 环境变量 | 用例 | 安全级别 |
|
||||
| ------ | ------------------------------ | -------------- | -------- |
|
||||
| 禁用 | `LOGIC_FUNCTION_TYPE=DISABLED` | 完全禁用逻辑函数 | 不适用 |
|
||||
| 本地 | `LOGIC_FUNCTION_TYPE=LOCAL` | 开发和可信环境 | 低(无沙箱) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | 生产环境(处理不受信任代码) | 高(硬件级隔离) |
|
||||
|
||||
### 推荐配置
|
||||
### 逻辑函数 - 推荐配置
|
||||
|
||||
**用于开发:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
```
|
||||
|
||||
**用于生产(AWS):**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**要禁用逻辑函数:**
|
||||
|
||||
```bash
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
```
|
||||
|
||||
### 代码解释器 - 可用驱动程序
|
||||
|
||||
| 驱动 | 环境变量 | 用例 | 安全级别 |
|
||||
| --- | -------------------------------- | ----------- | ------- |
|
||||
| 禁用 | `CODE_INTERPRETER_TYPE=DISABLED` | 禁用 AI 代码执行 | 不适用 |
|
||||
| 本地 | `CODE_INTERPRETER_TYPE=LOCAL` | 仅限开发环境 | 低(无沙箱) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | 生产环境(沙盒化执行) | 高(隔离沙盒) |
|
||||
|
||||
<Note>
|
||||
使用 `SERVERLESS_TYPE=DISABLED` 时,任何尝试执行逻辑函数的操作都会返回错误。 如果你想在不启用逻辑函数能力的情况下运行 Twenty,这将很有用。
|
||||
当使用 `LOGIC_FUNCTION_TYPE=DISABLED` 或 `CODE_INTERPRETER_TYPE=DISABLED` 时,任何执行尝试都会返回错误。 如果你想在不启用这些功能的情况下运行 Twenty,这将很有用。
|
||||
</Note>
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,56 @@
|
||||
import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader';
|
||||
import { PageBody } from '@/ui/layout/page/components/PageBody';
|
||||
import { PAGE_BAR_MIN_HEIGHT } from '@/ui/layout/page/constants/PageBarMinHeight';
|
||||
import { styled } from '@linaria/react';
|
||||
import { useContext } from 'react';
|
||||
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
|
||||
import { ThemeContext, themeCssVariables } from 'twenty-ui/theme-constants';
|
||||
|
||||
const StyledHeaderSkeleton = styled.div`
|
||||
align-items: center;
|
||||
background: ${themeCssVariables.background.noisy};
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: ${themeCssVariables.spacing[2]};
|
||||
justify-content: space-between;
|
||||
min-height: ${PAGE_BAR_MIN_HEIGHT}px;
|
||||
padding: ${themeCssVariables.spacing[3]};
|
||||
`;
|
||||
|
||||
const StyledHeaderLeft = styled.div`
|
||||
flex: 1;
|
||||
`;
|
||||
|
||||
export const PageContentSkeletonLoader = () => {
|
||||
const { theme } = useContext(ThemeContext);
|
||||
|
||||
return (
|
||||
<>
|
||||
<StyledHeaderSkeleton>
|
||||
<StyledHeaderLeft>
|
||||
<SkeletonTheme
|
||||
baseColor={theme.background.tertiary}
|
||||
highlightColor={theme.background.transparent.lighter}
|
||||
borderRadius={4}
|
||||
>
|
||||
<Skeleton
|
||||
height={SKELETON_LOADER_HEIGHT_SIZES.standard.s}
|
||||
width={104}
|
||||
/>
|
||||
</SkeletonTheme>
|
||||
</StyledHeaderLeft>
|
||||
<SkeletonTheme
|
||||
baseColor={theme.background.tertiary}
|
||||
highlightColor={theme.background.transparent.lighter}
|
||||
borderRadius={4}
|
||||
>
|
||||
<Skeleton
|
||||
width={132}
|
||||
height={SKELETON_LOADER_HEIGHT_SIZES.standard.s}
|
||||
/>
|
||||
</SkeletonTheme>
|
||||
</StyledHeaderSkeleton>
|
||||
<PageBody>{null}</PageBody>
|
||||
</>
|
||||
);
|
||||
};
|
||||
@@ -1,100 +1,14 @@
|
||||
import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader';
|
||||
import { PageContentSkeletonLoader } from '~/loading/components/PageContentSkeletonLoader';
|
||||
import { styled } from '@linaria/react';
|
||||
import { useContext } from 'react';
|
||||
import Skeleton, { SkeletonTheme } from 'react-loading-skeleton';
|
||||
import {
|
||||
MOBILE_VIEWPORT,
|
||||
ThemeContext,
|
||||
themeCssVariables,
|
||||
} from 'twenty-ui/theme-constants';
|
||||
|
||||
const StyledMainContainer = styled.div`
|
||||
background: ${themeCssVariables.background.noisy};
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
flex-direction: row;
|
||||
gap: 8px;
|
||||
min-height: 0;
|
||||
padding-left: 0;
|
||||
width: 100%;
|
||||
|
||||
@media (max-width: ${MOBILE_VIEWPORT}px) {
|
||||
padding-left: 12px;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
`;
|
||||
|
||||
const StyledPanel = styled.div`
|
||||
background: ${themeCssVariables.background.primary};
|
||||
border: 1px solid ${themeCssVariables.border.color.medium};
|
||||
border-radius: ${themeCssVariables.border.radius.md};
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
width: 100%;
|
||||
`;
|
||||
|
||||
const StyledHeaderContainer = styled.div`
|
||||
flex: 1;
|
||||
`;
|
||||
const StyledRightPanelContainer = styled.div`
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
`;
|
||||
|
||||
const StyledRightPanelFlexContainer = styled.div`
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
height: 32px;
|
||||
justify-content: flex-end;
|
||||
margin-bottom: 12px;
|
||||
`;
|
||||
|
||||
const StyledSkeletonHeaderLoader = () => {
|
||||
const { theme } = useContext(ThemeContext);
|
||||
return (
|
||||
<StyledHeaderContainer>
|
||||
<SkeletonTheme
|
||||
baseColor={theme.background.tertiary}
|
||||
highlightColor={theme.background.transparent.lighter}
|
||||
borderRadius={4}
|
||||
>
|
||||
<Skeleton
|
||||
height={SKELETON_LOADER_HEIGHT_SIZES.standard.s}
|
||||
width={104}
|
||||
/>
|
||||
</SkeletonTheme>
|
||||
</StyledHeaderContainer>
|
||||
);
|
||||
};
|
||||
|
||||
const StyledSkeletonAddLoader = () => {
|
||||
const { theme } = useContext(ThemeContext);
|
||||
return (
|
||||
<SkeletonTheme
|
||||
baseColor={theme.background.tertiary}
|
||||
highlightColor={theme.background.transparent.lighter}
|
||||
borderRadius={4}
|
||||
>
|
||||
<Skeleton width={132} height={SKELETON_LOADER_HEIGHT_SIZES.standard.s} />
|
||||
</SkeletonTheme>
|
||||
);
|
||||
};
|
||||
|
||||
const RightPanelSkeleton = () => (
|
||||
<StyledMainContainer>
|
||||
<StyledPanel></StyledPanel>
|
||||
</StyledMainContainer>
|
||||
);
|
||||
|
||||
export const RightPanelSkeletonLoader = () => (
|
||||
<StyledRightPanelContainer>
|
||||
<StyledRightPanelFlexContainer>
|
||||
<StyledSkeletonHeaderLoader />
|
||||
<StyledSkeletonAddLoader />
|
||||
</StyledRightPanelFlexContainer>
|
||||
<RightPanelSkeleton />
|
||||
<PageContentSkeletonLoader />
|
||||
</StyledRightPanelContainer>
|
||||
);
|
||||
|
||||
@@ -13,11 +13,9 @@ const StyledContainer = styled.div`
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
gap: 12px;
|
||||
height: 100dvh;
|
||||
min-width: ${NAVIGATION_DRAWER_CONSTRAINTS.default}px;
|
||||
overflow: hidden;
|
||||
padding: 12px 8px 12px 8px;
|
||||
width: 100%;
|
||||
|
||||
@media (max-width: ${MOBILE_VIEWPORT}px) {
|
||||
@@ -25,6 +23,11 @@ const StyledContainer = styled.div`
|
||||
}
|
||||
`;
|
||||
|
||||
const StyledLeftPanelWrapper = styled.div`
|
||||
flex-shrink: 0;
|
||||
padding: 12px 0 12px 8px;
|
||||
`;
|
||||
|
||||
export const UserOrMetadataLoader = () => {
|
||||
const showAuthModal = useShowAuthModal();
|
||||
|
||||
@@ -36,7 +39,9 @@ export const UserOrMetadataLoader = () => {
|
||||
backdropZIndex={RootStackingContextZIndices.RootModalBackDrop}
|
||||
/>
|
||||
)}
|
||||
<LeftPanelSkeletonLoader />
|
||||
<StyledLeftPanelWrapper>
|
||||
<LeftPanelSkeletonLoader />
|
||||
</StyledLeftPanelWrapper>
|
||||
<RightPanelSkeletonLoader />
|
||||
</StyledContainer>
|
||||
);
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Voeg \"{trimmedName}\" by opsies"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Voeg 'n {objectLabelSingular} by"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Voeg 'n nodus by"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Toepassing besonderhede"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Goedgekeurde Domeine"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Kan nie skandeer nie? Kopieer die"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Kanselleer planwisseling?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Kanselleer jou intekening"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Kies tussen OIDC en SAML protokolle"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Kies tussen Kort en Volledig"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "kolomdata is nie versoenbaar met Multi-Select nie. Vereiste formaat is '
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Kolomme nie ooreenstem nie:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Gaan voort met Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Gaan voort sonder sinkronisering"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopieer"
|
||||
msgid "Copy code"
|
||||
msgstr "Kopieer kode"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Skep"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Skep {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Skep 'n werksvloei en kom terug hier om sy weergawes te besigtig"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Skep 'n werksruimte"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Skep 'n toepassing"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Verstek landkode"
|
||||
msgid "Default palette"
|
||||
msgstr "Verstekpalet"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Kon nie lêer oplaaai nie: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Kon nie prent oplaai nie"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Lys geïnstalleerde toepassings. Gebruik die filter om na 'n spesifieke
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Bestuur jou toepassing"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Bestuur jou internetrekeninge."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "moet 'n reeks voorwerpe wees met 'n geldige url en etiket (formaat: '[{\
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "moet 'n reeks van geldige e-posse wees"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nuwe E-posdomein"
|
||||
msgid "New Field"
|
||||
msgstr "Nuwe Veld"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Stoor Paneelbord"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Stel as primêr"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Stel e-pos sigbaarheid, bestuur jou blokkeerlys en meer."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabel"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Laai op"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Laai .xlsx, .xls of .csv lêer op"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Laai lêers op"
|
||||
msgid "Upload Files"
|
||||
msgstr "Laai lêers op"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Jy behoort reeds aan hierdie werksruimte"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Jy mag nie rekords vir hierdie voorwerp skep nie"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Jy kan of 'n privaat toepassing skep of dit met ander deel"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Jou rekening is geaktiveer."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Jou app weergawe is verouderd. Verfris asseblief die bladsy."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "أضف \"{trimmedName}\" إلى الخيارات"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "أضف {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "إضافة عقدة"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "تفاصيل التطبيق"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "النطاقات المعتمدة"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "هل لا يمكنك المسح؟ انسخ الـ"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "إلغاء تبديل الخطة؟"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "إلغاء الاشتراك"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "اختر بين بروتوكولات OIDC و SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "اختر بين قصير وكامل"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "بيانات العمود غير متوافقة مع التحديد ال
|
||||
msgid "Columns not matched:"
|
||||
msgstr "الأعمدة غير المتطابقة:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "الاستمرار باستخدام مايكروسوفت"
|
||||
msgid "Continue without sync"
|
||||
msgstr "المتابعة بدون مزامنة"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "نسخ"
|
||||
msgid "Copy code"
|
||||
msgstr "نسخ الكود"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "إنشاء"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "إنشاء {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "أنشئ سير عمل وعُد إلى هنا لرؤية إصدارات
|
||||
msgid "Create a workspace"
|
||||
msgstr "إنشاء مساحة العمل"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "إنشاء تطبيق"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "رمز البلد الافتراضي"
|
||||
msgid "Default palette"
|
||||
msgstr "لوحة الألوان الافتراضية"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "فشل في تحميل الملف: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "فشل في تحميل الصورة"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "اعرض قائمة التطبيقات المثبتة. استخدم عا
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "إدارة تطبيقك"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "إدارة حساباتك على الإنترنت."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "يجب أن تكون مصفوفة من الكائنات تحتوي عل
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "يجب أن تكون مصفوفة من بريد إلكتروني صالح"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "نطاق بريد إلكتروني جديد"
|
||||
msgid "New Field"
|
||||
msgstr "حقل جديد"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "حفظ لوحة القيادة"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "تعيين كأساسي"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "اضبط خصوصية البريد الإلكتروني، وإدارة قائمة الحظر والمزيد."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "جدول"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "رفع"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "تحميل ملف .xlsx أو .xls أو .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "رفع الملفات"
|
||||
msgid "Upload Files"
|
||||
msgstr "رفع الملفات"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14814,11 +14775,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15108,11 +15064,6 @@ msgstr "أنت بالفعل تنتمي إلى هذا فضاء العمل"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "غير مسموح لك بإنشاء سجلات لهذا الكائن"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "يمكنك إما إنشاء تطبيق خاص أو مشاركته مع الآخرين"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15183,6 +15134,11 @@ msgstr "تم تنشيط حسابك."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "نسخة التطبيق لديك قديمة. يُرجى تحديث الصفحة."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Afegeix \"{trimmedName}\" a les opcions"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Afegeix un {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Afegeix un node"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Detalls de l'aplicació"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Dominis Aprovats"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "No pots escanejar? Copia la"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Cancel·lar el canvi de pla?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancel·la la subscripció"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Tria entre protocols OIDC i SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Tria entre Curt i Complet"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "les dades de la columna no són compatibles amb Multi-Select. El format
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Columnes no coincidides:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Continua amb Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continua sense sincronització"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Copia"
|
||||
msgid "Copy code"
|
||||
msgstr "Copia el codi"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Crea"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Crea {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Crea un flux de treball i torna aquí per veure les seves versions"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Crear un espai de treball"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Crea una aplicació"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Codi de país predeterminat"
|
||||
msgid "Default palette"
|
||||
msgstr "Paleta predeterminada"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "No s'ha pogut carregar el fitxer: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "No s'ha pogut carregar la imatge"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Llista les aplicacions instal·lades. Utilitza el filtre per cercar una
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Gestiona la teva aplicació"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestiona els teus comptes d'Internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "ha de ser una matriu d'objectes amb url i etiqueta vàlids (format: '[{\
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "ha de ser una matriu de correus electrònics vàlids"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nou domini de correu"
|
||||
msgid "New Field"
|
||||
msgstr "Nou camp"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Desa el quadre de comandament"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Estableix com a principal"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Configura la visibilitat del correu, gestiona la teva llista de bloqueig i més."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Taula"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Pujada"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Carrega un fitxer .xlsx, .xls o .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Carrega fitxers"
|
||||
msgid "Upload Files"
|
||||
msgstr "Carregar Arxius"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Ja formes part d'aquest espai de treball"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "No tens permís per crear registres en aquest objecte"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Pots crear una aplicació privada o compartir-la amb altres"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "El teu compte s'ha activat."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "La teva versió de l'aplicació està desactualitzada. Si us plau, actualitza la pàgina."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Přidat \"{trimmedName}\" do možností"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Přidat {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Přidat uzel"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Podrobnosti aplikace"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Schválené domény"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Nemůžete skenovat? Zkopírujte"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Zrušit změnu plánu?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Zrušit vaše předplatné"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Vyberte mezi protokoly OIDC a SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Vyberte mezi Krátkým a Plným"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "data ve sloupci není kompatibilní s Multi-Select. Požadovaný formát
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Sloupce nejsou shodné:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Pokračovat s Microsoftem"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Pokračovat bez synchronizace"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopírovat"
|
||||
msgid "Copy code"
|
||||
msgstr "Kopírovat kód"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Vytvořit"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Vytvořit {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Vytvořte workflow a vraťte se zde pro zobrazení jeho verzí"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Vytvořte pracovní prostor"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Vytvořit aplikaci"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Výchozí číselný kód země"
|
||||
msgid "Default palette"
|
||||
msgstr "Výchozí paleta"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Nepodařilo se nahrát soubor: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Nepodařilo se nahrát obrázek"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Seznam nainstalovaných aplikací. Pomocí filtru vyhledejte konkrétní
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Spravujte svou aplikaci"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Spravujte své internetové účty."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "musí být pole objektů s platnou URL a popisem (formát: '[{\"url\":\"
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "musí být pole platných emailů"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nová e-mailová doména"
|
||||
msgid "New Field"
|
||||
msgstr "Nové pole"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Uložit panel"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Nastavit jako primární"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Nastavte viditelnost emailu, spravujte váš seznam blokovaných a další."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabulka"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Nahrát"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Nahrát soubor .xlsx, .xls nebo .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Nahrát soubory"
|
||||
msgid "Upload Files"
|
||||
msgstr "Nahrát soubory"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Již patříte do tohoto workspace"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Nemáte povoleno vytvářet záznamy pro tento objekt"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Můžete buď vytvořit soukromou aplikaci, nebo ji sdílet s ostatními"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Váš účet byl aktivován."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Verze vaší aplikace je zastaralá. Aktualizujte, prosím, stránku."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Tilføj \"{trimmedName}\" til muligheder"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Tilføj {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Tilføj en node"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Applikationsdetaljer"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Godkendte domæner"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Kan ikke scanne? Kopier"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Annuller planskift?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Annuller dit abonnement"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Vælg mellem OIDC og SAML protokoller"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Vælg mellem Kort og Fuld"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "kolonnedata er ikke kompatible med Multi-Select. Krævet format er '[\"o
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Kolonner ikke matchet:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Fortsæt med Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Fortsæt uden synkronisering"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopier"
|
||||
msgid "Copy code"
|
||||
msgstr "Kopiér kode"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Opret"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Opret {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Opret en arbejdsproces og vend tilbage hertil for at se dens versioner"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Opret et arbejdsområde"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Opret en applikation"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Standardlandekode"
|
||||
msgid "Default palette"
|
||||
msgstr "Standardfarvepalet"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Kunne ikke uploade fil: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Kunne ikke uploade billede"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Vis installerede applikationer. Brug filteret til at søge efter en best
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Administrer din app"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Administrer dine internetkonti."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "skal være en liste med gyldige url'er og etiketter (format: '[{\"url\":
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "skal være en liste af gyldige e-mails"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nyt e-mail-domæne"
|
||||
msgid "New Field"
|
||||
msgstr "Nyt felt"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Gem dashboard"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Angiv som primær"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Indstil synlighed af e-mail, administrer din blokeringsliste og mere."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabel"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13360,6 +13327,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14183,11 +14155,6 @@ msgstr "Upload"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Upload .xlsx, .xls eller .csv fil"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14211,12 +14178,6 @@ msgstr "Upload filer"
|
||||
msgid "Upload Files"
|
||||
msgstr "Upload filer"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14818,11 +14779,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15112,11 +15068,6 @@ msgstr "Du er allerede medlem af dette arbejdsområde"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Du har ikke tilladelse til at oprette poster i dette objekt"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Du kan enten oprette en privat app eller dele den med andre"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15187,6 +15138,11 @@ msgstr "Din konto er blevet aktiveret."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Din app-version er forældet. Opdater venligst siden."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "\"{trimmedName}\" zu den Optionen hinzufügen"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Ein {objectLabelSingular} hinzufügen"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Knoten hinzufügen"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Anwendungsdetails"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Genehmigte Domänen"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Kann nicht gescannt werden? Kopieren Sie das"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Tarifwechsel abbrechen?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Abonnement kündigen"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Wählen Sie zwischen OIDC- und SAML-Protokollen"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Wählen Sie zwischen Kurz und Voll"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "Spaltendaten sind nicht kompatibel mit Mehrfachauswahl. Erforderliches F
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Nicht zugeordnete Spalten:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Mit Microsoft fortfahren"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Ohne Synchronisierung fortfahren"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopieren"
|
||||
msgid "Copy code"
|
||||
msgstr "Code kopieren"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Erstellen"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Erstelle {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Erstellen Sie einen Workflow und kehren Sie hierher zurück, um die Vers
|
||||
msgid "Create a workspace"
|
||||
msgstr "Arbeitsbereich erstellen"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Eine Anwendung erstellen"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Standard-Ländercode"
|
||||
msgid "Default palette"
|
||||
msgstr "Standardpalette"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Datei konnte nicht hochgeladen werden: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Bild konnte nicht hochgeladen werden"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Installierte Anwendungen auflisten. Verwenden Sie den Filter, um nach ei
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Ihre App verwalten"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Verwalten Sie Ihre Internetkonten."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "muss ein Array von Objekten mit gültiger URL und Bezeichnung sein (Form
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "muss ein Array von gültigen E-Mails sein"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Neue E-Mail-Domäne"
|
||||
msgid "New Field"
|
||||
msgstr "Neues Feld"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Dashboard speichern"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Als primär festlegen"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "E-Mail-Sichtbarkeit festlegen, Blockliste verwalten und mehr."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabelle"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Hochladen"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Hochladen von .xlsx, .xls oder .csv Datei"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Dateien hochladen"
|
||||
msgid "Upload Files"
|
||||
msgstr "Dateien hochladen"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Sie gehören bereits zu diesem Arbeitsplatz"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Sie dürfen keine Datensätze für dieses Objekt erstellen"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Sie können entweder eine private App erstellen oder sie für andere freigeben"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Ihr Konto wurde aktiviert."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Ihre App-Version ist veraltet. Bitte aktualisieren Sie die Seite."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Προσθήκη \"{trimmedName}\" στις επιλογές"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Προσθήκη {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Προσθήκη κόμβου"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Λεπτομέρειες εφαρμογής"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Εγκεκριμένοι Τομείς"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Ακύρωση αλλαγής προγράμματος;"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Ακύρωση της συνδρομής σας"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Επιλέξτε μεταξύ των πρωτοκόλλων OIDC και
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Επιλέξτε μεταξύ Συντόμου και Πλήρους"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "τα δεδομένα της στήλης δεν είναι συμβατ
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Μη αντιστοιχισμένες στήλες:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Συνέχεια με τη Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Συνέχεια χωρίς συγχρονισμό"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Αντιγραφή"
|
||||
msgid "Copy code"
|
||||
msgstr "Αντιγραφή κώδικα"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Δημιουργία"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Δημιουργήστε {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Δημιουργήστε ένα workflow και επιστρέψτε ε
|
||||
msgid "Create a workspace"
|
||||
msgstr "Δημιουργία Χώρου Εργασίας"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Δημιουργία εφαρμογής"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Προεπιλεγμένος Κωδικός Χώρας"
|
||||
msgid "Default palette"
|
||||
msgstr "Προεπιλεγμένη παλέτα"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Απέτυχε η μεταφόρτωση αρχείου: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Αποτυχία μεταφόρτωσης εικόνας"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Προβολή εγκατεστημένων εφαρμογών. Χρησ
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Διαχειριστείτε την εφαρμογή σας"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Διαχειριστείτε τους λογαριασμούς σας στο διαδίκτυο."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "πρέπει να είναι μια σειρά αντικειμένου
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "πρέπει να είναι μια σειρά έγκυρων emails"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Νέα Περιοχή Email"
|
||||
msgid "New Field"
|
||||
msgstr "Νέο Πεδίο"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Αποθήκευση πίνακα ελέγχου"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Ορισμός ως κύριο"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Ρυθμίστε την ορατότητα του email, διαχειριστείτε τη λίστα αποκλεισμού σας και άλλα."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13047,11 +13019,6 @@ msgstr "Πίνακας"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13362,6 +13329,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14185,11 +14157,6 @@ msgstr "Ανέβασμα"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Μεταφόρτωση αρχείων τύπου .xlsx, .xls ή .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14213,12 +14180,6 @@ msgstr "Ανέβασμα αρχείων"
|
||||
msgid "Upload Files"
|
||||
msgstr "Ανέβασμα αρχείων"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14820,11 +14781,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15114,11 +15070,6 @@ msgstr "Ανήκετε ήδη σε αυτό το workspace"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Δεν επιτρέπεται να δημιουργείτε εγγραφές για αυτό το αντικείμενο"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Μπορείτε είτε να δημιουργήσετε μια ιδιωτική εφαρμογή είτε να τη μοιραστείτε με άλλους"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15189,6 +15140,11 @@ msgstr "Ο λογαριασμός σας έχει ενεργοποιηθεί."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Η έκδοση της εφαρμογής σας είναι παρωχημένη. Παρακαλώ ανανεώστε τη σελίδα."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -801,6 +801,13 @@ msgstr "Add \"{trimmedName}\" to options"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Add a {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr "Add a Group"
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -817,12 +824,6 @@ msgstr "Add a node"
|
||||
msgid "Add a record"
|
||||
msgstr "Add a record"
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr "Add a Section"
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1350,6 +1351,11 @@ msgstr "All App Registrations"
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr "All application registrations across the platform, including orphaned marketplace apps"
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr "All applications registered on this workspace"
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1789,7 +1795,6 @@ msgid "Application details"
|
||||
msgstr "Application details"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr "Application installed successfully."
|
||||
@@ -1849,11 +1854,6 @@ msgstr "Approved Domains"
|
||||
msgid "Apps"
|
||||
msgstr "Apps"
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr "Apps you've created, registered, or published"
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2516,7 +2516,6 @@ msgstr "Can't scan? Copy the"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2579,6 +2578,11 @@ msgstr "Cancel plan switching?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancel your subscription"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr "Cannot delete the only view"
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2733,11 +2737,6 @@ msgstr "Choose between OIDC and SAML protocols"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Choose between Short and Full"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr "Choose file"
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2942,6 +2941,11 @@ msgstr "column data is not compatible with Multi-Select. Format required is '[\"
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Columns not matched:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr "Command copied to clipboard"
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3300,11 +3304,6 @@ msgstr "Continue with Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continue without sync"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3342,6 +3341,11 @@ msgstr "Copy"
|
||||
msgid "Copy code"
|
||||
msgstr "Copy code"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr "Copy command"
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3502,6 +3506,11 @@ msgstr "Create"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Create {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr "Create & Develop"
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3542,11 +3551,6 @@ msgstr "Create a workflow and return here to view its versions"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Create a workspace"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Create an application"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4141,12 +4145,6 @@ msgstr "Default Country Code"
|
||||
msgid "Default palette"
|
||||
msgstr "Default palette"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr "Default position/visibility for fields created in the future"
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5558,11 +5556,6 @@ msgstr "Error uninstalling application"
|
||||
msgid "Error uninstalling application."
|
||||
msgstr "Error uninstalling application."
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr "Error updating marketplace listing"
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6188,11 +6181,6 @@ msgstr "Failed to upload file: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Failed to upload picture"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr "Failed to upload tarball."
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8060,11 +8048,6 @@ msgstr "List installed applications. Use filter to search for a specific applica
|
||||
msgid "Listed"
|
||||
msgstr "Listed"
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr "Listed on marketplace"
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8333,11 +8316,6 @@ msgstr "Manage your app"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Manage your internet accounts."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr "Managed by the marketplace catalog sync for npm packages"
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8725,11 +8703,6 @@ msgstr "must be an array of object with valid url and label (format: '[{\"url\":
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "must be an array of valid emails"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr "My Apps"
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8951,12 +8924,6 @@ msgstr "New Emailing Domain"
|
||||
msgid "New Field"
|
||||
msgstr "New Field"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr "New fields"
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11470,6 +11437,11 @@ msgstr "Save Dashboard"
|
||||
msgid "Save Page Layout"
|
||||
msgstr "Save Page Layout"
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11921,11 +11893,6 @@ msgstr "Select 1 {fieldTypeLabelLowercase} field"
|
||||
msgid "Select 1 field"
|
||||
msgstr "Select 1 field"
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr "Select a .tar.gz application package to upload and install."
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12173,6 +12140,11 @@ msgstr "Set as Primary"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Set email visibility, manage your blocklist and more."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr "Set fields created in the future as \"visible\""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13040,11 +13012,6 @@ msgstr "Table"
|
||||
msgid "Tarball upload"
|
||||
msgstr "Tarball upload"
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr "Tarball uploaded but installation failed."
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13355,6 +13322,11 @@ msgstr "This action will delete this folder and the navigation menu item inside.
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr "This app is installed on the current workspace"
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr "This app is listed on the marketplace because it is published to npm."
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14178,11 +14150,6 @@ msgstr "Upload"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Upload .xlsx, .xls or .csv file"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr "Upload failed."
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14206,12 +14173,6 @@ msgstr "Upload files"
|
||||
msgid "Upload Files"
|
||||
msgstr "Upload Files"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr "Upload tarball"
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14813,11 +14774,6 @@ msgstr "When enabled, new AI models will be available to users by default"
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr "When enabled, newly added models are available to all workspaces by default"
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr "When enabled, this app appears in the marketplace browse page"
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15107,11 +15063,6 @@ msgstr "You already belong to this workspace"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "You are not allowed to create records for this object"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "You can either create a private app or share it to others"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15182,6 +15133,11 @@ msgstr "Your account has been activated."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Your app version is out of date. Please refresh the page."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr "Your Apps"
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Agregar \"{trimmedName}\" a las opciones"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Agregar un {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Añadir un nodo"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Detalles de la aplicación"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Dominios Aprobados"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "¿No puedes escanear? Copia el"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "¿Cancelar cambio de plan?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancelar su suscripción"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Elija entre los protocolos OIDC y SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Elige entre Corto y Completo"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "los datos de la columna no son compatibles con Selección Múltiple. El
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Columnas no coinciden:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Continuar con Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuar sin sincronización"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Copiar"
|
||||
msgid "Copy code"
|
||||
msgstr "Copiar código"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Crear"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Crear {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Cree un workflow y vuelva aquí para ver sus versiones"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Crear Espacio de Trabajo"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Crear una aplicación"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Código de país predeterminado"
|
||||
msgid "Default palette"
|
||||
msgstr "Paleta predeterminada"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Falló al subir el archivo: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Error al subir la imagen"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Lista las aplicaciones instaladas. Usa el filtro para buscar una aplicac
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Gestiona tu aplicación"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestione sus cuentas de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "debe ser un arreglo de objetos con URL y etiqueta válidos (formato: '[{
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "debe ser un arreglo de correos electrónicos válidos"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nuevo dominio de correo electrónico"
|
||||
msgid "New Field"
|
||||
msgstr "Nuevo Campo"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Guardar Tablero"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Establecer como principal"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Configura la visibilidad del correo electrónico, gestiona tu lista de bloqueo y más."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabla"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13360,6 +13327,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14183,11 +14155,6 @@ msgstr "Subir"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Subir un archivo .xlsx, .xls o .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14211,12 +14178,6 @@ msgstr "Subir archivos"
|
||||
msgid "Upload Files"
|
||||
msgstr "Subir archivos"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14818,11 +14779,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15112,11 +15068,6 @@ msgstr "Ya perteneces a este espacio de trabajo"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "No tiene permiso para crear registros en este objeto"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Puedes crear una aplicación privada o compartirla con otras personas"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15187,6 +15138,11 @@ msgstr "Tu cuenta ha sido activada."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "La versión de su aplicación está desactualizada. Por favor, actualice la página."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Lisää \"{trimmedName}\" valintoihin"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Lisää {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Lisää solmu"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Sovelluksen tiedot"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Hyväksytyt verkkotunnukset"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Et voi skannata? Kopioi"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Peruuta suunnitelman vaihtaminen?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Peruuta tilauksesi"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Valitse OIDC- ja SAML-protokollien välillä"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Valitse lyhyen ja täyden välillä"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "sarakedata ei ole yhteensopiva monivalinnan kanssa. Vaadittu muoto on '[
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Sarakkeita ei ole yhdistetty:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Jatka Microsoftin avulla"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Jatka ilman synkronointia"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopioi"
|
||||
msgid "Copy code"
|
||||
msgstr "Kopioi koodi"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Luo"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Luo {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Luo työnkulku ja palaa tänne nähdäksesi sen versiot"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Luo työtila"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Luo sovellus"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Oletusmaakoodi"
|
||||
msgid "Default palette"
|
||||
msgstr "Oletuspaletti"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Tiedostoa ei voitu ladata: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Kuvan lähetys epäonnistui"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Listaa asennetut sovellukset. Käytä suodatinta tietyn sovelluksen etsi
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Hallitse sovellustasi"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Hallitse internet-tilejäsi."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "täytyy olla objekti taulukossa, jossa on kelvollinen URL ja tunniste (f
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "täytyy olla kelvollisia sähköposteja sisältävä taulukko"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Uusi sähköpostitoimialue"
|
||||
msgid "New Field"
|
||||
msgstr "Uusi kenttä"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Tallenna hallintapaneeli"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Aseta ensisijaiseksi"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Aseta sähköpostin näkyvyys, hallinnoi estolistaa ja muuta."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Taulukko"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Lataa"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Lataa .xlsx, .xls tai .csv tiedosto"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Lataa tiedostoja"
|
||||
msgid "Upload Files"
|
||||
msgstr "Lataa tiedostoja"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Kuulut jo tähän työtilaan"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Et voi luoda tietueita tälle objektille"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Voit joko luoda yksityisen sovelluksen tai jakaa sen muille"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Tilisi on aktivoitu."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Sovelluksesi versio on vanhentunut. Ole hyvä, päivitä sivu."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Ajouter \"{trimmedName}\" aux options"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Ajouter un {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Ajouter un nœud"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Détails de l'application"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Domaines approuvés"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Impossible de scanner ? Copiez le"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Annuler le changement de plan ?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Annuler votre abonnement"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Choisissez entre les protocoles OIDC et SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Choisir entre Court et Complet"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "les données de colonne ne sont pas compatibles avec la sélection multi
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Colonnes non appariées :"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Continuer avec Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuer sans synchronisation"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Copier"
|
||||
msgid "Copy code"
|
||||
msgstr "Copier le code"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Créer"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Créer {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Créez un workflow et revenez ici pour voir ses versions"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Créer un espace de travail"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Créer une application"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Code du pays par défaut"
|
||||
msgid "Default palette"
|
||||
msgstr "Palette par défaut"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Échec du téléchargement du fichier : {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Échec du téléversement de l'image"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Répertoriez les applications installées. Utilisez le filtre pour reche
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Gérez votre application"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gérez vos comptes internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "doit être un tableau d'objet avec une URL et un libellé valides (forma
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "doit être un tableau d'emails valides"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nouveau domaine d'envoi d'e-mail"
|
||||
msgid "New Field"
|
||||
msgstr "Nouveau champ"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Enregistrer le tableau de bord"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Définir comme principal"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Définir la visibilité des emails, gérer votre liste de blocage et plus encore."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Table"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13360,6 +13327,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14183,11 +14155,6 @@ msgstr "Téléverser"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Téléchargez le fichier .xlsx, .xls ou .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14211,12 +14178,6 @@ msgstr "Téléverser des fichiers"
|
||||
msgid "Upload Files"
|
||||
msgstr "Téléverser les fichiers"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14818,11 +14779,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15112,11 +15068,6 @@ msgstr "Vous appartenez déjà à cet espace de travail"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Vous n'êtes pas autorisé à créer des enregistrements pour cet objet"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Vous pouvez soit créer une application privée, soit la partager avec d'autres"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15187,6 +15138,11 @@ msgstr "Votre compte a été activé."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Votre version de l'application est obsolète. Veuillez rafraîchir la page."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
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
@@ -806,6 +806,13 @@ msgstr "הוסף \"{trimmedName}\" לאפשרויות"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "הוסף {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "הוסף צומת"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "פרטי היישום"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "דומיינים מאושרים"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "לא ניתן לסרוק? העתק את"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "האם לבטל את החלפת התכנית?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "בטל את המינוי שלך"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "בחר בין פרוטוקולים OIDC ו-SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "בחר בין קצר למלא"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "נתוני העמודה אינם תואמים לרב-בחירה. פור
|
||||
msgid "Columns not matched:"
|
||||
msgstr "עמודות שלא תואמו:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "המשך עם מיקרוסופט"
|
||||
msgid "Continue without sync"
|
||||
msgstr "המשך ללא סנכרון"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "העתק"
|
||||
msgid "Copy code"
|
||||
msgstr "העתק קוד"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "צור"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "צור {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "צור זרימת עבודה וחזור לכאן כדי לצפות בג
|
||||
msgid "Create a workspace"
|
||||
msgstr "צור מרחב עבודה"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "צור יישום"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "קוד מדינה ברירת מחדל"
|
||||
msgid "Default palette"
|
||||
msgstr "פלטת ברירת המחדל"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "לא הצליח להעלות קובץ: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "העלאת התמונה נכשלה"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "הצג את היישומים המותקנים. השתמש במסנן כ
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "נהל את היישום שלך"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "נהל את חשבונות האינטרנט שלך."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "חייב להיות מערך של אובייקטים עם כתובת URL
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "חייב להיות מערך של אימיילים חוקיים"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "<span dir=\"rtl\">דומיין חדש לשליחת מיילים</span>"
|
||||
msgid "New Field"
|
||||
msgstr "שדה חדש"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "שמור לוח בקרה"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "הגדר כראשי"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "קבע את נראות הדוא\"ל, נהל את רשימת החסימה שלך ועוד."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "טבלה"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "העלה"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ".xlsx, .xls או .csv העלה קובץ"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "העלה קבצים"
|
||||
msgid "Upload Files"
|
||||
msgstr "העלאת קבצים"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "אתה כבר משתייך לסביבת העבודה הזו"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "אין לך הרשאה ליצור רשומות באובייקט זה"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "באפשרותך ליצור יישום פרטי או לשתף אותו עם אחרים"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "החשבון שלך הופעל."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "גרסת האפליקציה שלך אינה מעודכנת. אנא רענן את הדף."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "\"{trimmedName}\" hozzáadása az opciókhoz"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Új {objectLabelSingular} hozzáadása"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Csomópont hozzáadása"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Alkalmazás részletei"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Jóváhagyott tartományok"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Nem tud beolvasni? Másolja a"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Csomagváltás törlése?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Előfizetése lemondása"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "OIDC és SAML protokollok közötti választás"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Válasszon a Rövid és Teljes között"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "az oszlopadatok nem kompatibilisek a többválasztásos kiválasztással
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Nem egyező oszlopok:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Folytatás Microsofttal"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Folytatás szinkronizálás nélkül"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Másolás"
|
||||
msgid "Copy code"
|
||||
msgstr "Kód másolása"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Létrehozás"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "{targetObjectLabelSingular} létrehozása"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Hozzon létre egy munkafolyamatot, majd térjen vissza ide a verziók me
|
||||
msgid "Create a workspace"
|
||||
msgstr "Hozzon létre munkaterületet"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Alkalmazás létrehozása"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Alapértelmezett országkód"
|
||||
msgid "Default palette"
|
||||
msgstr "Alapértelmezett paletta"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Fájl feltöltése nem sikerült: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Nem sikerült feltölteni a képet"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "A telepített alkalmazások listája. Használja a szűrőt egy adott al
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Alkalmazás kezelése"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Kezeld az internetes fiókjaid."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "érvényes URL-t és címkét tartalmazó objektumok tömbjének kell le
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "érvényes e-maileket tartalmazó tömbnek kell lennie"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Új Emailküldési Tartomány"
|
||||
msgid "New Field"
|
||||
msgstr "Új mező"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Irányítópult mentése"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Beállítás elsődlegesként"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Beállíthatja az e-mail láthatóságát, kezelheti a tiltólistáját és egyebeket."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Táblázat"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Feltöltés"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ".xlsx, .xls vagy .csv fájl feltöltése"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Fájlok feltöltése"
|
||||
msgid "Upload Files"
|
||||
msgstr "Fájlok feltöltése"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Már ehhez a munkaasztalhoz tartozik"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Nincs jogosultság rekord létrehozására ehhez az objektumhoz"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Létrehozhat egy privát alkalmazást, vagy megoszthatja másokkal"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "A fiókja aktiválva lett."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Az ön szoftververziója elavult. Kérjük, frissítse az oldalt."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Aggiungi \"{trimmedName}\" alle opzioni"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Aggiungi {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Aggiungi un nodo"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Dettagli dell'applicazione"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Domini approvati"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Non puoi scansionare? Copia il"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Annulla il cambio di piano?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Annulla l'abbonamento"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Scegli tra i protocolli OIDC e SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Scegli tra Breve e Completo"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "i dati della colonna non sono compatibili con Multi-Select. Il formato r
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Colonne non corrispondenti:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Continua con Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continua senza sincronizzazione"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Copia"
|
||||
msgid "Copy code"
|
||||
msgstr "Copia codice"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Crea"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Crea {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Crea un workflow e torna qui per visualizzarne le versioni"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Crea uno spazio di lavoro"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Crea un'applicazione"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Prefisso internazionale predefinito"
|
||||
msgid "Default palette"
|
||||
msgstr "Tavolozza predefinita"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Caricamento del file {fileName} non riuscito"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Caricamento dell'immagine non riuscito"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Elenca le applicazioni installate. Usa il filtro per cercare un'applicaz
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Gestisci la tua app"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestisci i tuoi account Internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "deve essere un array di oggetti con url e etichetta validi (formato: '[{
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "deve essere un array di email valide"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nuovo dominio di email"
|
||||
msgid "New Field"
|
||||
msgstr "Nuovo Campo"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Salva Cruscotto"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Imposta come principale"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Imposta la visibilità dell'email, gestisci la tua blocklist e altro."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabella"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13360,6 +13327,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14183,11 +14155,6 @@ msgstr "Carica"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Carica un file .xlsx, .xls o .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14211,12 +14178,6 @@ msgstr "Carica file"
|
||||
msgid "Upload Files"
|
||||
msgstr "Carica file"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14818,11 +14779,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15112,11 +15068,6 @@ msgstr "Appartieni già a questo workspace"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Non sei autorizzato a creare record per questo oggetto"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Puoi creare un'app privata o condividerla con altri"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15187,6 +15138,11 @@ msgstr "Il tuo account è stato attivato."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "La versione dell'app è obsoleta. Si prega di aggiornare la pagina."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "「{trimmedName}」をオプションに追加"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "{objectLabelSingular} を追加"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "ノードを追加する"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "アプリケーション詳細"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "承認されたドメイン"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "スキャンできませんか? コピーしてください"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "プラン切替をキャンセルしますか?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "サブスクリプションをキャンセル"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "OIDCとSAMLプロトコルの中から選択"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "ショートとフルの間で選択"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "列データはマルチセレクトと互換性がありません。必
|
||||
msgid "Columns not matched:"
|
||||
msgstr "一致しない列:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Microsoftで続行"
|
||||
msgid "Continue without sync"
|
||||
msgstr "同期せずに続行"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "コピー"
|
||||
msgid "Copy code"
|
||||
msgstr "コードをコピー"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "作成"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "{targetObjectLabelSingular}を作成"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "ワークフローを作成し、ここに戻ってそのバージョン
|
||||
msgid "Create a workspace"
|
||||
msgstr "ワークスペースを作成"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "アプリケーションを作成"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "デフォルトの国コード"
|
||||
msgid "Default palette"
|
||||
msgstr "デフォルトのパレット"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "ファイルのアップロードに失敗しました: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "画像のアップロードに失敗しました"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "インストール済みのアプリケーションを一覧表示しま
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "アプリを管理"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "インターネットアカウントを管理"
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "有効なURLとラベルを持つオブジェクトの配列でなけれ
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "有効なメールアドレスの配列でなければなりません"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "新しいメール送信ドメイン"
|
||||
msgid "New Field"
|
||||
msgstr "新規フィールド"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "ダッシュボードを保存"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "プライマリに設定"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "メールの可視性を設定し、ブロックリストを管理するなど。"
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "テーブル"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "アップロード"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ".xlsx、.xls、または.csvファイルをアップロード"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "ファイルをアップロード"
|
||||
msgid "Upload Files"
|
||||
msgstr "ファイルをアップロード"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "すでにこのワークスペースに所属しています"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "このオブジェクトでレコードを作成することは許可されていません"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "プライベートアプリを作成することも、他のユーザーと共有することもできます。"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "あなたのアカウントが有効化されました。"
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "アプリのバージョンが古いです。ページを更新してください。"
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "\"{trimmedName}\"을 옵션에 추가하기"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "{objectLabelSingular} 추가"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "노드 추가"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "응용 프로그램 세부정보"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "승인된 도메인"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "스캔이 불가능합니까?"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "플랜 전환을 취소하시겠습니까?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "구독 취소"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "OIDC와 SAML 프로토콜 중 선택"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "짧음과 긴 중에서 선택"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "컬럼 데이터는 다중 선택과 호환되지 않습니다. 요구
|
||||
msgid "Columns not matched:"
|
||||
msgstr "일치하지 않는 열:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Microsoft로 계속"
|
||||
msgid "Continue without sync"
|
||||
msgstr "동기화 없이 계속"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "복사"
|
||||
msgid "Copy code"
|
||||
msgstr "코드 복사"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "생성"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "{targetObjectLabelSingular} 생성"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "워크플로를 생성하고 여기로 돌아와 버전을 확인하세
|
||||
msgid "Create a workspace"
|
||||
msgstr "워크스페이스 만들기"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "응용 프로그램 생성"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "기본 국가 코드"
|
||||
msgid "Default palette"
|
||||
msgstr "기본 팔레트"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "파일 업로드 실패: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "사진 업로드 실패"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "설치된 애플리케이션 목록입니다. 특정 애플리케이션
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "앱 관리"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "인터넷 계정을 관리하세요."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "유효한 URL과 라벨이 포함된 객체 배열이어야 합니다 (
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "유효한 이메일의 배열이어야 합니다"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "새 이메일 도메인"
|
||||
msgid "New Field"
|
||||
msgstr "새 필드"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "대시보드 저장"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "기본으로 설정"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "이메일 공개 여부 설정, 차단 목록 관리 등을 할 수 있습니다."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "테이블"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "업로드"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ".xlsx, .xls 또는 .csv 파일 업로드"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "파일 업로드"
|
||||
msgid "Upload Files"
|
||||
msgstr "파일 업로드"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "귀하는 이미 이 작업 공간에 속해 있습니다"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "이 개체에 기록을 생성할 수 있는 권한이 없습니다"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "개인용 앱을 만들거나 다른 사람과 공유할 수 있습니다."
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "계정이 활성화되었습니다."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "귀하의 앱 버전이 오래되었습니다. 페이지를 새로 고침하십시오."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Voeg \"{trimmedName}\" toe aan opties"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Voeg een {objectLabelSingular} toe"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Voeg een knooppunt toe"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Applicatiedetails"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Goedgekeurde Domeinen"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Kan je niet scannen? Kopieer de"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Planwisseling annuleren?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Annuleer uw abonnement"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Kies tussen OIDC- en SAML-protocollen"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Kies tussen Kort en Volledig"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "kolomgegevens zijn niet compatibel met Multi-Select. Vereist formaat is
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Kolommen niet overeenkomend:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Doorgaan met Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Doorgaan zonder synchronisatie"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopiëren"
|
||||
msgid "Copy code"
|
||||
msgstr "Code kopiëren"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Creëren"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Creëer {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Maak een workflow en kom terug om de versies te bekijken"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Werkruimte aanmaken"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Een applicatie maken"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Standaard landcode"
|
||||
msgid "Default palette"
|
||||
msgstr "Standaardpalet"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Niet gelukt om bestand te uploaden: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Afbeelding uploaden mislukt"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Geïnstalleerde toepassingen weergeven. Gebruik het filter om naar een s
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Beheer je toepassing"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Beheer uw internetaccounts."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "moet een array zijn van objecten met een geldige url en label (formaat:
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "moet een array zijn van geldige e-mails"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nieuw e-maildomein"
|
||||
msgid "New Field"
|
||||
msgstr "Nieuw veld"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Dashboard opslaan"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Als primair instellen"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Instellen e-mail zichtbaarheid, beheer je blokkeerlijst en meer."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tableau"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13360,6 +13327,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14183,11 +14155,6 @@ msgstr "Uploaden"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Upload .xlsx, .xls of .csv bestand"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14211,12 +14178,6 @@ msgstr "Bestanden uploaden"
|
||||
msgid "Upload Files"
|
||||
msgstr "Bestanden Uploaden"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14818,11 +14779,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15112,11 +15068,6 @@ msgstr "Je behoort al tot deze werkruimte"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "U mag geen records maken voor dit object"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Je kunt een privétoepassing maken of deze met anderen delen"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15187,6 +15138,11 @@ msgstr "Je account is geactiveerd."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Uw app-versie is verouderd. Ververs de pagina, alstublieft."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Legg til \"{trimmedName}\" i valg"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Legg til {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Legg til node"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Applikasjonsdetaljer"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Godkjente domener"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Kan ikke skanne? Kopier "
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Avbryt planbytte?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Si opp abonnementet ditt"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Velg mellom OIDC og SAML protokoller"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Velg mellom Kort og Full"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "kolonnedata er ikke kompatible med flervalg. Formatet som kreves er '[\\
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Kolonner ikke matchet:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Fortsett med Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Fortsett uten synkronisering"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopier"
|
||||
msgid "Copy code"
|
||||
msgstr "Kopier kode"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Opprett"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Opprett {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Opprett en arbeidsflyt og kom tilbake hit for å vise versjonene"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Opprett arbeidsområde"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Opprett en applikasjon"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Standardlandkode"
|
||||
msgid "Default palette"
|
||||
msgstr "Standardpalett"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Kunne ikke laste opp fil: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Kunne ikke laste opp bilde"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr ""
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr ""
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Administrer internett-kontoene dine."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "må være en matrise av objekter med gyldig URL og etikett (format: '[{\
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "må være en matrise av gyldige e-poster"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nytt e-postdomene"
|
||||
msgid "New Field"
|
||||
msgstr "Nytt felt"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Lagre dashbord"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Sett som primær"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Angi e-post synlighet, administrere blokkeringslisten og mer."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabell"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Last opp"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Last opp .xlsx, .xls eller .csv fil"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Last opp filer"
|
||||
msgid "Upload Files"
|
||||
msgstr "Last opp filer"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Du tilhører allerede dette arbeidsområdet"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Du har ikke tillatelse til å opprette poster for dette objektet"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Kontoen din er aktivert."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Din appversjon er utdatert. Vennligst oppdater siden."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Dodaj \"{trimmedName}\" do opcji"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Dodaj {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Dodaj węzeł"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Szczegóły aplikacji"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Zatwierdzone domeny"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Nie można zeskanować? Skopiuj"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Anulować przełączanie planu?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Anuluj swoją subskrypcję"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Wybierz pomiędzy protokołami OIDC a SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Wybierz między Krótkim i Pełnym"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "dane kolumny nie są zgodne z Multi-Select. Wymagany format to '[\"opcja
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Kolumny nie dopasowane:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Kontynuuj za pomocą Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Kontynuuj bez synchronizacji"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopiuj"
|
||||
msgid "Copy code"
|
||||
msgstr "Kopiuj kod"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Utwórz"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Utwórz {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Stwórz przepływ pracy i wróć tutaj, aby zobaczyć jego wersje"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Stwórz przestrzeń pracy"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Domyślny kod kraju"
|
||||
msgid "Default palette"
|
||||
msgstr "Domyślna paleta"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Nie udało się przesłać pliku: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Nie udało się przesłać zdjęcia"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Wyświetl zainstalowane aplikacje. Użyj filtra, aby wyszukać konkretn
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Zarządzaj swoją aplikacją"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Zarządzaj swoimi internetowymi kontami."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "musi być tablicą obiektów z prawidłowym URL-em i etykietą (format:
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "musi być tablicą prawidłowych adresów e-mail"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Nowa domena e-mailowa"
|
||||
msgid "New Field"
|
||||
msgstr "Nowe pole"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Zapisz Dashboard"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Ustaw jako główne"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Ustaw widoczność e-maila, zarządzaj swoją listą blokowanych i więcej."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabela"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Prześlij"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Załaduj plik .xlsx, .xls lub .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Prześlij pliki"
|
||||
msgid "Upload Files"
|
||||
msgstr "Prześlij pliki"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Już należysz do tego obszaru roboczego"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Nie masz uprawnień do tworzenia rekordów dla tego obiektu"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Możesz utworzyć prywatną aplikację albo udostępnić ją innym"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Twoje konto zostało aktywowane."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Twoja wersja aplikacji jest nieaktualna. Proszę odśwież stronę."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -801,6 +801,13 @@ msgstr ""
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -817,12 +824,6 @@ msgstr ""
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1350,6 +1351,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1789,7 +1795,6 @@ msgid "Application details"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1849,11 +1854,6 @@ msgstr ""
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2516,7 +2516,6 @@ msgstr ""
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2579,6 +2578,11 @@ msgstr ""
|
||||
msgid "Cancel your subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2733,11 +2737,6 @@ msgstr ""
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2942,6 +2941,11 @@ msgstr ""
|
||||
msgid "Columns not matched:"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3300,11 +3304,6 @@ msgstr ""
|
||||
msgid "Continue without sync"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3342,6 +3341,11 @@ msgstr ""
|
||||
msgid "Copy code"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3502,6 +3506,11 @@ msgstr ""
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3542,11 +3551,6 @@ msgstr ""
|
||||
msgid "Create a workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4141,12 +4145,6 @@ msgstr ""
|
||||
msgid "Default palette"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5558,11 +5556,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6188,11 +6181,6 @@ msgstr ""
|
||||
msgid "Failed to upload picture"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8060,11 +8048,6 @@ msgstr ""
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8333,11 +8316,6 @@ msgstr ""
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8725,11 +8703,6 @@ msgstr ""
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8951,12 +8924,6 @@ msgstr ""
|
||||
msgid "New Field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11470,6 +11437,11 @@ msgstr ""
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11921,11 +11893,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12173,6 +12140,11 @@ msgstr ""
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13040,11 +13012,6 @@ msgstr ""
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13353,6 +13320,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14176,11 +14148,6 @@ msgstr ""
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14204,12 +14171,6 @@ msgstr ""
|
||||
msgid "Upload Files"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14809,11 +14770,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15103,11 +15059,6 @@ msgstr ""
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15178,6 +15129,11 @@ msgstr ""
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Adicionar \"{trimmedName}\" às opções"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Adicionar um {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Adicionar nó"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Detalhes da aplicação"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Domínios Aprovados"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Não consegue escanear? Copie o"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Cancelar alternância de plano?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancelar sua assinatura"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Escolha entre os protocolos OIDC e SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Escolha entre Curto e Completo"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "os dados da coluna não são compatíveis com Multi-Select. O formato ne
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Colunas não correspondentes:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Continuar com a Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuar sem sincronizar"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Copiar"
|
||||
msgid "Copy code"
|
||||
msgstr "Copiar código"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Criar"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Criar {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Crie um workflow e retorne aqui para visualizar suas versões"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Criar Espaço de Trabalho"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Criar uma aplicação"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Código do País Padrão"
|
||||
msgid "Default palette"
|
||||
msgstr "Paleta Padrão"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Falha ao carregar arquivo: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Falha ao carregar imagem"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Liste os aplicativos instalados. Use o filtro para pesquisar um aplicati
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Gerencie seu aplicativo"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gerencie suas contas de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "deve ser um array de objetos com url e rótulo válidos (formato: '[{\"u
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "deve ser um array de emails válidos"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Novo Domínio de E-mail"
|
||||
msgid "New Field"
|
||||
msgstr "Novo campo"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Salvar Painel"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Definir como principal"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Defina a visibilidade do e-mail, gerencie sua lista de bloqueio e mais."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabela"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Carregar"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Carregar arquivo .xlsx, .xls ou .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Fazer upload de arquivos"
|
||||
msgid "Upload Files"
|
||||
msgstr "Fazer upload de Arquivos"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Você já pertence a este workspace"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Você não está autorizado a criar registros para este objeto"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Você pode criar um aplicativo privado ou compartilhá-lo com outras pessoas"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Sua conta foi ativada."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Sua versão do aplicativo está desatualizada. Por favor, atualize a página."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Adicionar \"{trimmedName}\" às opções"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Adicionar um {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Adicionar nó"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Detalhes da aplicação"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Domínios Aprovados"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Não consegue escanear? Copie o"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Cancelar mudança de plano?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancelar a sua subscrição"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Escolha entre os protocolos OIDC e SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Escolha entre Curto e Completo"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "os dados da coluna não são compatíveis com Multi-Select. O formato ne
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Colunas não correspondem:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Continuar com a Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuar sem sincronização"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Copiar"
|
||||
msgid "Copy code"
|
||||
msgstr "Copiar código"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Criar"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Criar {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Crie um workflow e volte aqui para ver as suas versões"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Criar Espaço de Trabalho"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Criar um aplicativo"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Código de país padrão"
|
||||
msgid "Default palette"
|
||||
msgstr "Paleta padrão"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Falha ao carregar o arquivo: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Falha ao carregar a imagem"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Liste as aplicações instaladas. Use o filtro para pesquisar uma aplica
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Gerencie sua aplicação"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gerir as suas contas de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "deve ser um array de objetos com URL e rótulo válidos (formato: '[{\"u
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "deve ser uma lista de e-mails válidos"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Novo Domínio de Email"
|
||||
msgid "New Field"
|
||||
msgstr "Novo Campo"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Salvar Painel"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Definir como Principal"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Defina a visibilidade do e-mail, gere a sua lista de bloqueio e muito mais."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabela"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Carregar"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Carregar arquivo .xlsx, .xls ou .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Carregar ficheiros"
|
||||
msgid "Upload Files"
|
||||
msgstr "Carregar arquivos"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Você já pertence a este espaço de trabalho"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Você não tem permissão para criar registros para este objeto"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Você pode criar uma aplicação privada ou compartilhá-la com outras pessoas"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "A sua conta foi ativada."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "A versão do seu aplicativo está desatualizada. Por favor, atualize a página."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Adaugă \"{trimmedName}\" la opțiuni"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Adaugă un {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Adaugă nod"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Detalii aplicație"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Domenii Aprobate"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Nu poți scana? Copiază"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Anulați schimbarea planului?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Anulează abonamentul"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Alegeți între protocoalele OIDC și SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Alege între Redus și Complet"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "datele coloanei nu sunt compatibile cu Selectare multiplă. Formatul nec
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Coloane nepotrivite:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Continuați cu Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Continuă fără sincronizare"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Copiază"
|
||||
msgid "Copy code"
|
||||
msgstr "Copiază codul"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Creează"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Creează {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Creează un flux de lucru și revino aici pentru a vizualiza versiunile
|
||||
msgid "Create a workspace"
|
||||
msgstr "Creează un spațiu de lucru"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Creează o aplicație"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Codul de țară implicit"
|
||||
msgid "Default palette"
|
||||
msgstr "Paletă implicită"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Nu s-a reușit încărcarea fișierului: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Nu s-a reușit încărcarea imaginii"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Listați aplicațiile instalate. Utilizați filtrul pentru a căuta o ap
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Gestionați aplicația dvs."
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Gestionează-ți conturile de internet."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "trebuie să fie un tablou de obiecte cu url valid și etichetă (format:
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "trebuie să fie un tablou de e-mailuri valide"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Domeniu nou de email"
|
||||
msgid "New Field"
|
||||
msgstr "Câmp nou"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Salvează tabloul de bord"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Setează ca principal"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Setează vizibilitatea emailului, administrează lista de blocare și altele."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tabel"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Încarcă"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Încarcă fișier .xlsx, .xls sau .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Încărcați fișiere"
|
||||
msgid "Upload Files"
|
||||
msgstr "Încărcați fișiere"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Aparții deja acestui spațiu de lucru"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Nu aveți permisiunea de a crea înregistrări pentru acest obiect"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Puteți fie să creați o aplicație privată, fie să o partajați cu alții"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Contul dvs. a fost activat."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Versiunea aplicației tale este depășită. Te rog să reîmprospătezi pagina."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
Binary file not shown.
@@ -806,6 +806,13 @@ msgstr "Додај \"{trimmedName}\" у опције"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Додај {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Додај чвор"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Детаљи апликације"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Одобрени домени"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Не можете да скенирате? Копирајте"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Откажи промену плана?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Откажите претплату"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Изаберите између OIDC и SAML протокола"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Изаберите између кратке и пуне"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "подаци у колони нису компатибилни са ви
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Колоне нису упарене:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Настави са Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Настави без синхронизације"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Копирај"
|
||||
msgid "Copy code"
|
||||
msgstr "Копирај код"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Креирајте"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Креирај {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Креирајте радни ток и вратите се овде д
|
||||
msgid "Create a workspace"
|
||||
msgstr "Креирај радни простор"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Креирај апликацију"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Подразумевани код земље"
|
||||
msgid "Default palette"
|
||||
msgstr "Подразумевана палета"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Није успела отпремање датотеке: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Није успело отпремање слике"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Прикажите инсталиране апликације. Кори
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Управљајте својом апликацијом"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Управљање вашим интернетским налозима."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "мора бити низ објеката са важећим URL и о
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "мора бити низ важећих е-пошти"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Нови имејл домен"
|
||||
msgid "New Field"
|
||||
msgstr "Ново поље"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Сачувај контролну таблу"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Постави као примарно"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Подесите видљивост имејла, управљајте вашом листом блокираних и још много тога."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Табела"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Отпреми"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Отпремите .xlsx, .xls или .csv датотеку"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Отпремите датотеке"
|
||||
msgid "Upload Files"
|
||||
msgstr "Отпремите датотеке"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Већ припадате овом радном простору"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Није дозвољено креирање записа за овај објекат"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Можете да креирате приватну апликацију или да је поделите са другима"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Ваш налог је активиран."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Ваша верзија апликације је застарела. Молимо освежите страницу."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Lägg till \"{trimmedName}\" i alternativ"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Lägg till {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Lägg till en nod"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Applikationsdetaljer"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Godkända domäner"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Kan inte skanna? Kopiera "
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Avbryt planbyte?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Avsluta din prenumeration"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Välj mellan OIDC och SAML-protokoll"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Välj mellan Kort och Fullständig"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "kolumndata är inte kompatibel med Multi-Select. Krävt format är '[\"o
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Kolumner som inte matchades:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Fortsätt med Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Fortsätt utan synkronisering"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopiera"
|
||||
msgid "Copy code"
|
||||
msgstr "Kopiera kod"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Skapa"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Skapa {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Skapa ett arbetsflöde och återvänd hit för att se dess versioner"
|
||||
msgid "Create a workspace"
|
||||
msgstr "Skapa arbetsyta"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Skapa en applikation"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Standardlandskod"
|
||||
msgid "Default palette"
|
||||
msgstr "Standardpalett"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Kunde inte ladda upp filen: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Misslyckades med att ladda upp bild"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Lista installerade applikationer. Använd filtret för att söka efter e
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Hantera din app"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Hantera dina internetkonton."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8732,11 +8710,6 @@ msgstr "måste vara en array av objekt med giltig URL och etikett (format: '[{\"
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "måste vara en array med giltiga e-postadresser"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8958,12 +8931,6 @@ msgstr "Ny e-postdomän"
|
||||
msgid "New Field"
|
||||
msgstr "Nytt fält"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11479,6 +11446,11 @@ msgstr "Spara instrumentpanel"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11930,11 +11902,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12182,6 +12149,11 @@ msgstr "Ange som primär"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Ställ in e-postns synlighet, hantera din blocklista och mer."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13057,11 +13029,6 @@ msgstr "Tabell"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13372,6 +13339,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14195,11 +14167,6 @@ msgstr "Ladda upp"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Ladda upp .xlsx, .xls eller .csv fil"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14223,12 +14190,6 @@ msgstr "Ladda upp filer"
|
||||
msgid "Upload Files"
|
||||
msgstr "Ladda upp filer"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14830,11 +14791,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15124,11 +15080,6 @@ msgstr "Du tillhör redan denna arbetsyta"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Du har inte tillåtelse att skapa poster i detta objekt"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Du kan antingen skapa en privat app eller dela den med andra"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15199,6 +15150,11 @@ msgstr "Ditt konto har aktiverats."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Din appversion är föråldrad. Ladda om sidan."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "\"{trimmedName}\" seçeneğe ekle"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Bir {objectLabelSingular} ekle"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Bir düğüm ekle"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Uygulama detayları"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Onaylanmış Alan Adları"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Tarayamaz mısınız? Kopyalayın."
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Plan değişikliğini iptal et?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Aboneliğinizi iptal edin"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "OIDC ve SAML protokolleri arasında seçim yapın"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Kısa ve Tam seçenekleri arasında seçim yapın"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "sütun verileri Çoklu Seçim ile uyumlu değil. Gerekli format '[\"seç
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Eşleşmeyen sütunlar:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Microsoft ile devam et"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Eşitlemeden devam et"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Kopyala"
|
||||
msgid "Copy code"
|
||||
msgstr "Kodu kopyala"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Oluştur"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "{targetObjectLabelSingular} oluştur"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Bir iş akışı oluşturun ve sürümlerini görmek için buraya geri d
|
||||
msgid "Create a workspace"
|
||||
msgstr "Çalışma Alanı Oluştur"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Uygulama oluştur"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Varsayılan Ülke Kodu"
|
||||
msgid "Default palette"
|
||||
msgstr "Varsayılan palet"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Dosya yükleme başarısız: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Resim yüklenemedi"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Yüklü uygulamaları listeleyin. Belirli bir uygulamayı aramak için f
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Uygulamanızı yönetin"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "İnternet hesaplarınızı yönetin."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "geçerli url ve etikete sahip bir nesne dizisi olmalıdır (format: '[{\
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "geçerli e-posta adreslerinden oluşan bir dizi olmalıdır"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Yeni E-posta Alan Adı"
|
||||
msgid "New Field"
|
||||
msgstr "Yeni Alan"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Gösterge Panelini Kaydet"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Birincil yap"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "E-posta görünürlüğünü ayarlayın, engel listenizi yönetin ve daha fazlası."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Tablo"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Yükle"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr ".xlsx, .xls veya .csv dosyası yükleyin"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Dosyaları yükle"
|
||||
msgid "Upload Files"
|
||||
msgstr "Dosyaları Yükle"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Zaten bu çalışma alanına dahilsiniz"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Bu nesne için kayıt oluşturmaya izin verilmiyor"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Özel bir uygulama oluşturabilir veya başkalarıyla paylaşabilirsiniz"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Hesabınız etkinleştirildi."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Uygulama sürümünüz güncel değil. Lütfen sayfayı yenileyin."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Додати \"{trimmedName}\" до параметрів"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Додати {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Додати вузол"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Деталі застосування"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Затверджені домени"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Не можете сканувати? Скопіюйте"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Скасувати перемикання плану?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Скасувати підписку"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Виберіть між протоколами OIDC та SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Вибрати між скороченим та повним"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "дані стовпця несумісні з багатоселекто
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Стовпці не збіглися:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Продовжити з Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Продовжити без синхронізації"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Копіювати"
|
||||
msgid "Copy code"
|
||||
msgstr "Копіювати код"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Створити"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Створити {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Створіть процес та поверніться сюди, що
|
||||
msgid "Create a workspace"
|
||||
msgstr "Створити робочий простір"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Створити застосунок"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Код країни за замовчуванням"
|
||||
msgid "Default palette"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Не вдалося завантажити файл: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Не вдалося завантажити зображення"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Список встановлених застосунків. Скори
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Керуйте своїм застосунком"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Управління своїми інтернет-акаунтами."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "повинен бути масивом об'єктів з дійсним
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "повинен бути масивом дійсних електронних адрес"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Новий домен для відправки електронної
|
||||
msgid "New Field"
|
||||
msgstr "Нове поле"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Зберегти інформаційну панель"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Зробити основним"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Налаштуйте видимість електронної пошти, керуйте списком блокування та більше."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Таблиця"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13360,6 +13327,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14183,11 +14155,6 @@ msgstr "Завантажити"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Завантажити файл .xlsx, .xls або .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14211,12 +14178,6 @@ msgstr "Завантажити файли"
|
||||
msgid "Upload Files"
|
||||
msgstr "Завантажити файли"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14818,11 +14779,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15112,11 +15068,6 @@ msgstr "Ви вже належите до цього робочого прост
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Ви не маєте права створювати записи для цього об'єкта"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Ви можете створити приватний застосунок або поділитися ним з іншими"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15187,6 +15138,11 @@ msgstr "Ваш обліковий запис активовано."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Версія вашого додатка застаріла. Будь ласка, оновіть сторінку."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "Thêm \"{trimmedName}\" vào các tùy chọn"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Thêm {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "Thêm nút"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "Chi tiết ứng dụng"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "Miền Đã Được Phê Duyệt"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "Không thể quét? Sao chép"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "Hủy chuyển đổi kế hoạch?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Hủy đăng ký của bạn"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "Chọn giữa giao thức OIDC và SAML"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "Chọn giữa Ngắn và Đầy đủ"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "dữ liệu cột không tương thích với Đa Lựa Chọn. Định
|
||||
msgid "Columns not matched:"
|
||||
msgstr "Các cột không khớp:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "Tiếp tục với Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "Tiếp tục mà không đồng bộ"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "Sao chép"
|
||||
msgid "Copy code"
|
||||
msgstr "Sao chép mã"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "Tạo"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "Tạo {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "Tạo một quy trình làm việc và quay lại đây để xem các p
|
||||
msgid "Create a workspace"
|
||||
msgstr "Tạo không gian làm việc"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "Tạo ứng dụng"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "Mã quốc gia mặc định"
|
||||
msgid "Default palette"
|
||||
msgstr "Bảng màu mặc định"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "Không thể tải lên tệp: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "Không thể tải lên ảnh"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "Liệt kê các ứng dụng đã cài đặt. Sử dụng bộ lọc đ
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "Quản lý ứng dụng của bạn"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "Quản lý các tài khoản internet của bạn."
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "phải là một mảng đối tượng với URL hợp lệ và nhãn (
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "phải là một mảng email hợp lệ"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "Tên miền Email mới"
|
||||
msgid "New Field"
|
||||
msgstr "Trường mới"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "Lưu bảng điều khiển"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "Đặt làm chính"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "Thiết lập hiển thị email, quản lý danh sách chặn và hơn thế nữa."
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "Bảng"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "Tải lên"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "Tải lên tệp .xlsx, .xls hoặc .csv"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "Tải lên tệp"
|
||||
msgid "Upload Files"
|
||||
msgstr "Tải lên tệp"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "Bạn đã thuộc vào workspace này"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "Bạn không được phép tạo bản ghi cho đối tượng này"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "Bạn có thể tạo một ứng dụng riêng tư hoặc chia sẻ với người khác"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "Tài khoản của bạn đã được kích hoạt."
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "Phiên bản ứng dụng của bạn đã lỗi thời. Vui lòng làm mới trang."
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "将 \"{trimmedName}\" 添加到选项中"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "添加一个 {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "添加节点"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "应用程序详情"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "批准的域名"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "无法扫描?复制"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "取消计划切换?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "取消订阅"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "请选择 OIDC 与 SAML 协议中的一种"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "选择简短或完整"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "列数据与多选不兼容。需要的格式为“[\"选项1\", \"选
|
||||
msgid "Columns not matched:"
|
||||
msgstr "未匹配的列:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "继续使用 Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "继续但不同步"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "复制"
|
||||
msgid "Copy code"
|
||||
msgstr "复制代码"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "创建"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "创建{targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "创建工作流并返回此处查看其版本"
|
||||
msgid "Create a workspace"
|
||||
msgstr "创建工作区"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "创建应用程序"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "默认国家代码"
|
||||
msgid "Default palette"
|
||||
msgstr "默认调色板"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "无法上传文件:{fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "上传图片失败"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "列出已安装的应用程序。使用筛选器搜索特定的应用程
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "管理您的应用程序"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "管理您的互联网账户。"
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "必须是一个包含有效 URL 和标签的对象数组(格式:'[{\
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "必须是有效电子邮件的数组"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "新电子邮件发送域名"
|
||||
msgid "New Field"
|
||||
msgstr "新字段"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "保存仪表板"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "设为主要"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "设置电子邮件可见性、管理黑名单等。"
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "表格"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "上传"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "上传 .xlsx,.xls 或 .csv 文件"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "上传文件"
|
||||
msgid "Upload Files"
|
||||
msgstr "上传文件"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "您已属于此工作区"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "您无权为此对象创建记录"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "您可以创建私有应用程序,或将其分享给他人。"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "您的账户已激活。"
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "您的应用程序版本已过期。请刷新页面。"
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
@@ -806,6 +806,13 @@ msgstr "將 \"{trimmedName}\" 添加到選項中"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "新增一個 {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -822,12 +829,6 @@ msgstr "添加節點"
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1355,6 +1356,11 @@ msgstr ""
|
||||
msgid "All application registrations across the platform, including orphaned marketplace apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mSTufP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "All applications registered on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1kLn6M
|
||||
#: src/modules/activities/calendar/components/CalendarEventRow.tsx
|
||||
msgid "All day"
|
||||
@@ -1794,7 +1800,6 @@ msgid "Application details"
|
||||
msgstr "應用程序詳細信息"
|
||||
|
||||
#. js-lingui-id: lGEBD4
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/modules/marketplace/hooks/useInstallApp.ts
|
||||
msgid "Application installed successfully."
|
||||
msgstr ""
|
||||
@@ -1854,11 +1859,6 @@ msgstr "已批准的網域"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KKYyo8
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Apps you've created, registered, or published"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8HV3WN
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
msgid "Arabic"
|
||||
@@ -2521,7 +2521,6 @@ msgstr "無法掃描? 複製"
|
||||
#. js-lingui-id: dEgA5A
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
@@ -2584,6 +2583,11 @@ msgstr "取消方案切換?"
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "取消訂閱"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8fbdLj
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
|
||||
@@ -2738,11 +2742,6 @@ msgstr "選擇 OIDC 和 SAML 協議"
|
||||
msgid "Choose between Short and Full"
|
||||
msgstr "選擇簡短或完整"
|
||||
|
||||
#. js-lingui-id: +yPBXI
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Choose file"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YcrXB2
|
||||
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
|
||||
msgid "Choose the default currency that will apply"
|
||||
@@ -2947,6 +2946,11 @@ msgstr "欄位資料與多選不相容。所需格式為'[\\"
|
||||
msgid "Columns not matched:"
|
||||
msgstr "未匹配的欄位:"
|
||||
|
||||
#. js-lingui-id: cj9UFG
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Command copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RyZt4H
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
|
||||
msgid "Command Icon"
|
||||
@@ -3305,11 +3309,6 @@ msgstr "繼續使用 Microsoft"
|
||||
msgid "Continue without sync"
|
||||
msgstr "繼續(不進行同步)"
|
||||
|
||||
#. js-lingui-id: nTcGbN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +iFqZW
|
||||
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
|
||||
msgid "Control which types of entities this role can be assigned to"
|
||||
@@ -3347,6 +3346,11 @@ msgstr "複製"
|
||||
msgid "Copy code"
|
||||
msgstr "複製程式碼"
|
||||
|
||||
#. js-lingui-id: Oos8fo
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy command"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Es0ros
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Copy commands"
|
||||
@@ -3507,6 +3511,11 @@ msgstr "創建"
|
||||
msgid "Create {targetObjectLabelSingular}"
|
||||
msgstr "創建 {targetObjectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 5XhrY3
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create & Develop"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8aATyU
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Create a dashboard"
|
||||
@@ -3547,11 +3556,6 @@ msgstr "創建工作流程並返回此處查看其版本"
|
||||
msgid "Create a workspace"
|
||||
msgstr "建立工作區"
|
||||
|
||||
#. js-lingui-id: /WlFSf
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Create an application"
|
||||
msgstr "創建應用程序"
|
||||
|
||||
#. js-lingui-id: 8ZjIgO
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Create and configure AI agents"
|
||||
@@ -4146,12 +4150,6 @@ msgstr "默認國際冠碼"
|
||||
msgid "Default palette"
|
||||
msgstr "預設調色盤"
|
||||
|
||||
#. js-lingui-id: U/uGBk
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Default position/visibility for fields created in the future"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: v41VX6
|
||||
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
|
||||
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
|
||||
@@ -5563,11 +5561,6 @@ msgstr ""
|
||||
msgid "Error uninstalling application."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OceoGT
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Error updating marketplace listing"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: fQYyhK
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
msgid "Error updating redirect URIs"
|
||||
@@ -6193,11 +6186,6 @@ msgstr "檔案上傳失敗: {fileName}"
|
||||
msgid "Failed to upload picture"
|
||||
msgstr "上傳圖片失敗"
|
||||
|
||||
#. js-lingui-id: vWFfVs
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Failed to upload tarball."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K0joU5
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
|
||||
msgid "Failure Rate"
|
||||
@@ -8065,11 +8053,6 @@ msgstr "列出已安裝的應用程式。使用篩選器搜尋特定的應用程
|
||||
msgid "Listed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vxO58F
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Listed on marketplace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HhVDr2
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Listing"
|
||||
@@ -8338,11 +8321,6 @@ msgstr "管理您的應用程式"
|
||||
msgid "Manage your internet accounts."
|
||||
msgstr "管理您的互聯網帳戶"
|
||||
|
||||
#. js-lingui-id: +pSdLP
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "Managed by the marketplace catalog sync for npm packages"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BWTzAb
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
|
||||
@@ -8730,11 +8708,6 @@ msgstr "必須是一個包含有效網址和標籤的對象數組(格式:'{\
|
||||
msgid "must be an array of valid emails"
|
||||
msgstr "必須是一個有效的電子郵件數組"
|
||||
|
||||
#. js-lingui-id: bPl77g
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "My Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XTGSZU
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "My unlisted views"
|
||||
@@ -8956,12 +8929,6 @@ msgstr "新電子郵件域名"
|
||||
msgid "New Field"
|
||||
msgstr "新字段"
|
||||
|
||||
#. js-lingui-id: DNUCGO
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "New fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 96G6Re
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
@@ -11475,6 +11442,11 @@ msgstr "保存儀表板"
|
||||
msgid "Save Page Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: veLq3R
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gmB6oO
|
||||
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
|
||||
msgid "Schedule"
|
||||
@@ -11926,11 +11898,6 @@ msgstr ""
|
||||
msgid "Select 1 field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YfBvUy
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Select a .tar.gz application package to upload and install."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OMoA3j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/delay-actions/components/WorkflowEditActionDelay.tsx
|
||||
msgid "Select a date"
|
||||
@@ -12178,6 +12145,11 @@ msgstr "設為主要"
|
||||
msgid "Set email visibility, manage your blocklist and more."
|
||||
msgstr "設置電子郵件可見性,管理您的屏蔽列表等。"
|
||||
|
||||
#. js-lingui-id: qFjlHh
|
||||
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
|
||||
msgid "Set fields created in the future as \"visible\""
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6KA8xy
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
msgid "Set global workspace preferences"
|
||||
@@ -13045,11 +13017,6 @@ msgstr "表格"
|
||||
msgid "Tarball upload"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yvSCl+
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Tarball uploaded but installation failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sceIIK
|
||||
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
|
||||
msgid "Target relation on Junction Object"
|
||||
@@ -13358,6 +13325,11 @@ msgstr ""
|
||||
msgid "This app is installed on the current workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AldXy0
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "This app is listed on the marketplace because it is published to npm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SYslQU
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
@@ -14181,11 +14153,6 @@ msgstr "上傳"
|
||||
msgid "Upload .xlsx, .xls or .csv file"
|
||||
msgstr "上傳 .xlsx、.xls 或 .csv 文件"
|
||||
|
||||
#. js-lingui-id: BhkxTk
|
||||
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
|
||||
msgid "Upload failed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2IXDgU
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
|
||||
@@ -14209,12 +14176,6 @@ msgstr "上傳檔案"
|
||||
msgid "Upload Files"
|
||||
msgstr "上傳文件"
|
||||
|
||||
#. js-lingui-id: aG3MkW
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
|
||||
msgid "Upload tarball"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: akDOEO
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Upload the XML file with your connection infos"
|
||||
@@ -14816,11 +14777,6 @@ msgstr ""
|
||||
msgid "When enabled, newly added models are available to all workspaces by default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mCGuXk
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
|
||||
msgid "When enabled, this app appears in the marketplace browse page"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: C51ilI
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeysNew.tsx
|
||||
msgid "When the API key will expire."
|
||||
@@ -15110,11 +15066,6 @@ msgstr "您已經屬於此工作區"
|
||||
msgid "You are not allowed to create records for this object"
|
||||
msgstr "您無權在此對象中創建記錄"
|
||||
|
||||
#. js-lingui-id: iibZbD
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "You can either create a private app or share it to others"
|
||||
msgstr "您可以建立私人應用程式,或將它分享給其他人"
|
||||
|
||||
#. js-lingui-id: CNAoaw
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
|
||||
msgid "You can see the function logic in your application settings."
|
||||
@@ -15185,6 +15136,11 @@ msgstr "您的帳戶已啟用。"
|
||||
msgid "Your app version is out of date. Please refresh the page."
|
||||
msgstr "您的應用程式版本已過期。請重新整理頁面。"
|
||||
|
||||
#. js-lingui-id: oNUh7z
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Your Apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +5YqGH
|
||||
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
|
||||
msgid "Your email subjects and meeting titles will be shared with your team."
|
||||
|
||||
+2
@@ -157,10 +157,12 @@ export const CalendarEventDetails = ({
|
||||
const renderField = (fieldMetadataItem: FieldMetadataItem) => {
|
||||
const isReadOnly = isRecordFieldReadOnly({
|
||||
isRecordReadOnly,
|
||||
isSystemObject: objectMetadataItem.isSystem,
|
||||
objectPermissions,
|
||||
fieldMetadataItem: {
|
||||
id: fieldMetadataItem.id,
|
||||
isUIReadOnly: fieldMetadataItem.isUIReadOnly ?? false,
|
||||
isCustom: fieldMetadataItem.isCustom ?? false,
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
+28
-24
@@ -1,35 +1,39 @@
|
||||
import { downloadFile } from '@/activities/files/utils/downloadFile';
|
||||
import { saveAs } from 'file-saver';
|
||||
|
||||
jest.mock('file-saver', () => ({
|
||||
saveAs: jest.fn(),
|
||||
}));
|
||||
|
||||
const mockBlob = new Blob(['test content'], { type: 'application/pdf' });
|
||||
|
||||
global.fetch = jest.fn(() =>
|
||||
Promise.resolve({
|
||||
status: 200,
|
||||
blob: jest.fn(),
|
||||
blob: () => Promise.resolve(mockBlob),
|
||||
} as unknown as Response),
|
||||
);
|
||||
|
||||
window.URL.createObjectURL = jest.fn(() => 'mock-url');
|
||||
window.URL.revokeObjectURL = jest.fn();
|
||||
|
||||
// FIXME: jest is behaving weirdly here, it's not finding the element
|
||||
// Also the document's innerHTML is empty
|
||||
// `global.fetch` and `window.fetch` are also undefined
|
||||
describe.skip('downloadFile', () => {
|
||||
it('should download a file', () => {
|
||||
downloadFile('url/to/file.pdf', 'file.pdf');
|
||||
|
||||
expect(fetch).toHaveBeenCalledWith('url/to/file.pdf');
|
||||
|
||||
const link = document.querySelector(
|
||||
'a[href="mock-url"][download="file.pdf"]',
|
||||
);
|
||||
|
||||
expect(link).not.toBeNull();
|
||||
// oxlint-disable-next-line @typescripttypescript/ban-ts-comment
|
||||
// @ts-ignore
|
||||
expect(link?.style?.display).toBe('none');
|
||||
|
||||
expect(link).toHaveBeenCalledTimes(1);
|
||||
|
||||
describe('downloadFile', () => {
|
||||
afterEach(() => {
|
||||
jest.clearAllMocks();
|
||||
});
|
||||
|
||||
it('should download a file', async () => {
|
||||
await downloadFile('url/to/file.pdf', 'file.pdf');
|
||||
|
||||
expect(fetch).toHaveBeenCalledWith('url/to/file.pdf');
|
||||
expect(saveAs).toHaveBeenCalledWith(mockBlob, 'file.pdf');
|
||||
});
|
||||
|
||||
it('should reject when fetch fails', async () => {
|
||||
(global.fetch as jest.Mock).mockResolvedValueOnce({
|
||||
status: 404,
|
||||
blob: () => Promise.resolve(mockBlob),
|
||||
});
|
||||
|
||||
await expect(downloadFile('url/to/file.pdf', 'file.pdf')).rejects.toBe(
|
||||
'Failed downloading file',
|
||||
);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { saveAs } from 'file-saver';
|
||||
|
||||
export const downloadFile = (fullPath: string, fileName: string) => {
|
||||
fetch(fullPath)
|
||||
return fetch(fullPath)
|
||||
.then((resp) =>
|
||||
resp.status === 200
|
||||
? resp.blob()
|
||||
|
||||
@@ -1,9 +1,17 @@
|
||||
import { PageContainer } from '@/ui/layout/page/components/PageContainer';
|
||||
import { type ReactNode, Suspense } from 'react';
|
||||
import { PageContentSkeletonLoader } from '~/loading/components/PageContentSkeletonLoader';
|
||||
|
||||
type LazyRouteProps = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
const LazyRouteFallback = () => (
|
||||
<PageContainer>
|
||||
<PageContentSkeletonLoader />
|
||||
</PageContainer>
|
||||
);
|
||||
|
||||
export const LazyRoute = ({ children }: LazyRouteProps) => (
|
||||
<Suspense fallback={<></>}>{children}</Suspense>
|
||||
<Suspense fallback={<LazyRouteFallback />}>{children}</Suspense>
|
||||
);
|
||||
|
||||
+12
-37
@@ -1,13 +1,9 @@
|
||||
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { CommandMenuContextProviderDefault } from '@/command-menu-item/contexts/CommandMenuContextProviderDefault';
|
||||
import { CommandMenuContextProviderWorkflowObjects } from '@/command-menu-item/contexts/CommandMenuContextProviderWorkflowObjects';
|
||||
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
|
||||
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
|
||||
import { CoreObjectNameSingular } from 'twenty-shared/types';
|
||||
import { CommandMenuContextProviderLegacy } from '@/command-menu-item/contexts/CommandMenuContextProviderLegacy';
|
||||
import { CommandMenuContextProviderServerItems } from '@/command-menu-item/server-items/contexts/CommandMenuContextProviderServerItems';
|
||||
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
|
||||
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
||||
import { FeatureFlagKey } from '~/generated-metadata/graphql';
|
||||
|
||||
export const CommandMenuContextProvider = ({
|
||||
children,
|
||||
@@ -19,51 +15,30 @@ export const CommandMenuContextProvider = ({
|
||||
children: React.ReactNode;
|
||||
objectMetadataItemOverride?: ObjectMetadataItem;
|
||||
}) => {
|
||||
const contextStoreCurrentObjectMetadataItemId = useAtomComponentStateValue(
|
||||
contextStoreCurrentObjectMetadataItemIdComponentState,
|
||||
const isCommandMenuItemEnabled = useIsFeatureEnabled(
|
||||
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
|
||||
);
|
||||
|
||||
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
|
||||
|
||||
const objectMetadataItem =
|
||||
objectMetadataItemOverride ??
|
||||
objectMetadataItems.find(
|
||||
(objectMetadataItem) =>
|
||||
objectMetadataItem.id === contextStoreCurrentObjectMetadataItemId,
|
||||
);
|
||||
|
||||
if (!isDefined(objectMetadataItem)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const isWorkflowObject =
|
||||
objectMetadataItem?.nameSingular === CoreObjectNameSingular.Workflow;
|
||||
|
||||
if (!isDefined(objectMetadataItem)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (isWorkflowObject) {
|
||||
if (isCommandMenuItemEnabled) {
|
||||
return (
|
||||
<CommandMenuContextProviderWorkflowObjects
|
||||
<CommandMenuContextProviderServerItems
|
||||
isInSidePanel={isInSidePanel}
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
objectMetadataItem={objectMetadataItem}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderWorkflowObjects>
|
||||
</CommandMenuContextProviderServerItems>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<CommandMenuContextProviderDefault
|
||||
<CommandMenuContextProviderLegacy
|
||||
isInSidePanel={isInSidePanel}
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
objectMetadataItem={objectMetadataItem}
|
||||
objectMetadataItemOverride={objectMetadataItemOverride}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderDefault>
|
||||
</CommandMenuContextProviderLegacy>
|
||||
);
|
||||
};
|
||||
|
||||
+6
-25
@@ -2,8 +2,6 @@ import {
|
||||
CommandMenuContext,
|
||||
type CommandMenuContextType,
|
||||
} from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { useCommandMenuContextApi } from '@/command-menu-item/hooks/useCommandMenuContextApi';
|
||||
import { useCommandMenuItemFrontComponentCommands } from '@/command-menu-item/hooks/useCommandMenuItemFrontComponentCommands';
|
||||
import { useRegisteredCommandMenuItems } from '@/command-menu-item/hooks/useRegisteredCommandMenuItems';
|
||||
import { useShouldCommandMenuItemBeRegisteredParams } from '@/command-menu-item/hooks/useShouldCommandMenuItemBeRegisteredParams';
|
||||
import { useRunWorkflowRecordAgnosticCommands } from '@/command-menu-item/record-agnostic/workflow/hooks/useRunWorkflowRecordAgnosticCommands';
|
||||
@@ -11,8 +9,6 @@ import { useRunWorkflowRecordCommands } from '@/command-menu-item/record/workflo
|
||||
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
|
||||
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
|
||||
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
|
||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
||||
import { FeatureFlagKey } from '~/generated-metadata/graphql';
|
||||
|
||||
export const CommandMenuContextProviderDefault = ({
|
||||
objectMetadataItem,
|
||||
@@ -27,14 +23,10 @@ export const CommandMenuContextProviderDefault = ({
|
||||
containerType: CommandMenuContextType['containerType'];
|
||||
children: React.ReactNode;
|
||||
}) => {
|
||||
const params = useShouldCommandMenuItemBeRegisteredParams({
|
||||
const shouldBeRegisteredParams = useShouldCommandMenuItemBeRegisteredParams({
|
||||
objectMetadataItem,
|
||||
});
|
||||
|
||||
const shouldBeRegisteredParams = {
|
||||
...params,
|
||||
};
|
||||
|
||||
const commandMenuItems = useRegisteredCommandMenuItems(
|
||||
shouldBeRegisteredParams,
|
||||
);
|
||||
@@ -55,28 +47,17 @@ export const CommandMenuContextProviderDefault = ({
|
||||
const runWorkflowRecordAgnosticCommands =
|
||||
useRunWorkflowRecordAgnosticCommands();
|
||||
|
||||
const commandMenuContextApi = useCommandMenuContextApi();
|
||||
|
||||
const commandMenuItemFrontComponentActions =
|
||||
useCommandMenuItemFrontComponentCommands(commandMenuContextApi);
|
||||
|
||||
const isCommandMenuItemEnabled = useIsFeatureEnabled(
|
||||
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
|
||||
);
|
||||
|
||||
return (
|
||||
<CommandMenuContext.Provider
|
||||
value={{
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
commandMenuItems: isCommandMenuItemEnabled
|
||||
? commandMenuItemFrontComponentActions
|
||||
: [
|
||||
...commandMenuItems,
|
||||
...runWorkflowRecordCommands,
|
||||
...runWorkflowRecordAgnosticCommands,
|
||||
],
|
||||
commandMenuItems: [
|
||||
...commandMenuItems,
|
||||
...runWorkflowRecordCommands,
|
||||
...runWorkflowRecordAgnosticCommands,
|
||||
],
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { CommandMenuContextProviderDefault } from '@/command-menu-item/contexts/CommandMenuContextProviderDefault';
|
||||
import { CommandMenuContextProviderWorkflowObjects } from '@/command-menu-item/contexts/CommandMenuContextProviderWorkflowObjects';
|
||||
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
|
||||
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
|
||||
import { CoreObjectNameSingular } from 'twenty-shared/types';
|
||||
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
|
||||
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
export const CommandMenuContextProviderLegacy = ({
|
||||
children,
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
objectMetadataItemOverride,
|
||||
}: Omit<CommandMenuContextType, 'commandMenuItems'> & {
|
||||
children: React.ReactNode;
|
||||
objectMetadataItemOverride?: ObjectMetadataItem;
|
||||
}) => {
|
||||
const contextStoreCurrentObjectMetadataItemId = useAtomComponentStateValue(
|
||||
contextStoreCurrentObjectMetadataItemIdComponentState,
|
||||
);
|
||||
|
||||
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
|
||||
|
||||
const objectMetadataItem =
|
||||
objectMetadataItemOverride ??
|
||||
objectMetadataItems.find(
|
||||
(objectMetadataItem) =>
|
||||
objectMetadataItem.id === contextStoreCurrentObjectMetadataItemId,
|
||||
);
|
||||
|
||||
if (!isDefined(objectMetadataItem)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const isWorkflowObject =
|
||||
objectMetadataItem.nameSingular === CoreObjectNameSingular.Workflow;
|
||||
|
||||
if (isWorkflowObject) {
|
||||
return (
|
||||
<CommandMenuContextProviderWorkflowObjects
|
||||
isInSidePanel={isInSidePanel}
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
objectMetadataItem={objectMetadataItem}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderWorkflowObjects>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<CommandMenuContextProviderDefault
|
||||
isInSidePanel={isInSidePanel}
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
objectMetadataItem={objectMetadataItem}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderDefault>
|
||||
);
|
||||
};
|
||||
+8
-46
@@ -2,8 +2,6 @@ import {
|
||||
CommandMenuContext,
|
||||
type CommandMenuContextType,
|
||||
} from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { useCommandMenuContextApi } from '@/command-menu-item/hooks/useCommandMenuContextApi';
|
||||
import { useCommandMenuItemFrontComponentCommands } from '@/command-menu-item/hooks/useCommandMenuItemFrontComponentCommands';
|
||||
import { useRegisteredCommandMenuItems } from '@/command-menu-item/hooks/useRegisteredCommandMenuItems';
|
||||
import { useShouldCommandMenuItemBeRegisteredParams } from '@/command-menu-item/hooks/useShouldCommandMenuItemBeRegisteredParams';
|
||||
import { useRunWorkflowRecordAgnosticCommands } from '@/command-menu-item/record-agnostic/workflow/hooks/useRunWorkflowRecordAgnosticCommands';
|
||||
@@ -14,9 +12,7 @@ import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/use
|
||||
import { useAtomFamilyStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomFamilyStateValue';
|
||||
import { useWorkflowWithCurrentVersion } from '@/workflow/hooks/useWorkflowWithCurrentVersion';
|
||||
import { type WorkflowWithCurrentVersion } from '@/workflow/types/Workflow';
|
||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { FeatureFlagKey } from '~/generated-metadata/graphql';
|
||||
|
||||
type CommandMenuContextProviderWorkflowObjectsProps = {
|
||||
objectMetadataItem: ObjectMetadataItem;
|
||||
@@ -55,42 +51,16 @@ const CommandMenuContextProviderWorkflowObjectsContent = ({
|
||||
const runWorkflowRecordAgnosticCommands =
|
||||
useRunWorkflowRecordAgnosticCommands();
|
||||
|
||||
const commandMenuContextApi = useCommandMenuContextApi();
|
||||
|
||||
const enrichedSelectedRecords = isDefined(workflowWithCurrentVersion)
|
||||
? commandMenuContextApi.selectedRecords.map((record) =>
|
||||
record.id === workflowWithCurrentVersion.id
|
||||
? {
|
||||
...record,
|
||||
currentVersion: workflowWithCurrentVersion.currentVersion,
|
||||
versions: workflowWithCurrentVersion.versions,
|
||||
statuses: workflowWithCurrentVersion.statuses,
|
||||
}
|
||||
: record,
|
||||
)
|
||||
: commandMenuContextApi.selectedRecords;
|
||||
|
||||
const enrichedCommandMenuContextApi = {
|
||||
...commandMenuContextApi,
|
||||
selectedRecords: enrichedSelectedRecords,
|
||||
};
|
||||
|
||||
const commandMenuItemFrontComponentActions =
|
||||
useCommandMenuItemFrontComponentCommands(enrichedCommandMenuContextApi);
|
||||
|
||||
const isCommandMenuItemEnabled = useIsFeatureEnabled(
|
||||
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
|
||||
);
|
||||
|
||||
return (
|
||||
<CommandMenuContext.Provider
|
||||
value={{
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
commandMenuItems: isCommandMenuItemEnabled
|
||||
? commandMenuItemFrontComponentActions
|
||||
: [...commandMenuItems, ...runWorkflowRecordAgnosticCommands],
|
||||
commandMenuItems: [
|
||||
...commandMenuItems,
|
||||
...runWorkflowRecordAgnosticCommands,
|
||||
],
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
@@ -123,24 +93,16 @@ const CommandMenuContextProviderWorkflowObjectsWithoutWorkflow = ({
|
||||
const runWorkflowRecordAgnosticCommands =
|
||||
useRunWorkflowRecordAgnosticCommands();
|
||||
|
||||
const commandMenuContextApi = useCommandMenuContextApi();
|
||||
|
||||
const commandMenuItemFrontComponentActions =
|
||||
useCommandMenuItemFrontComponentCommands(commandMenuContextApi);
|
||||
|
||||
const isCommandMenuItemEnabled = useIsFeatureEnabled(
|
||||
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
|
||||
);
|
||||
|
||||
return (
|
||||
<CommandMenuContext.Provider
|
||||
value={{
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
commandMenuItems: isCommandMenuItemEnabled
|
||||
? commandMenuItemFrontComponentActions
|
||||
: [...commandMenuItems, ...runWorkflowRecordAgnosticCommands],
|
||||
commandMenuItems: [
|
||||
...commandMenuItems,
|
||||
...runWorkflowRecordAgnosticCommands,
|
||||
],
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
|
||||
+11
-4
@@ -116,8 +116,13 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
|
||||
position: 2,
|
||||
isPinned: true,
|
||||
Icon: IconPlus,
|
||||
shouldBeRegistered: ({ objectPermissions, hasAnySoftDeleteFilterOnView }) =>
|
||||
(objectPermissions.canUpdateObjectRecords &&
|
||||
shouldBeRegistered: ({
|
||||
objectMetadataItem,
|
||||
objectPermissions,
|
||||
hasAnySoftDeleteFilterOnView,
|
||||
}) =>
|
||||
(!objectMetadataItem?.isSystem &&
|
||||
objectPermissions.canUpdateObjectRecords &&
|
||||
!hasAnySoftDeleteFilterOnView) ??
|
||||
false,
|
||||
availableOn: [CommandMenuItemViewType.INDEX_PAGE_NO_SELECTION],
|
||||
@@ -440,8 +445,10 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
|
||||
Icon: IconFileImport,
|
||||
accent: 'default',
|
||||
isPinned: false,
|
||||
shouldBeRegistered: ({ hasAnySoftDeleteFilterOnView }) =>
|
||||
!hasAnySoftDeleteFilterOnView,
|
||||
shouldBeRegistered: ({
|
||||
objectMetadataItem,
|
||||
hasAnySoftDeleteFilterOnView,
|
||||
}) => !objectMetadataItem?.isSystem && !hasAnySoftDeleteFilterOnView,
|
||||
availableOn: [CommandMenuItemViewType.INDEX_PAGE_NO_SELECTION],
|
||||
component: <ImportRecordsNoSelectionRecordCommand />,
|
||||
requiredPermissionFlag: PermissionFlagType.IMPORT_CSV,
|
||||
|
||||
+61
@@ -0,0 +1,61 @@
|
||||
import { CoreObjectNameSingular } from 'twenty-shared/types';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
import { useCommandMenuContextApi } from '@/command-menu-item/server-items/hooks/useCommandMenuContextApi';
|
||||
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
|
||||
import { CommandMenuContextProviderServerItemsContent } from './CommandMenuContextProviderServerItemsContent';
|
||||
import { CommandMenuContextProviderServerItemsWithWorkflowEnrichment } from './CommandMenuContextProviderServerItemsWithWorkflowEnrichment';
|
||||
|
||||
type CommandMenuContextProviderServerItemsProps = {
|
||||
isInSidePanel: CommandMenuContextType['isInSidePanel'];
|
||||
displayType: CommandMenuContextType['displayType'];
|
||||
containerType: CommandMenuContextType['containerType'];
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export const CommandMenuContextProviderServerItems = ({
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
children,
|
||||
}: CommandMenuContextProviderServerItemsProps) => {
|
||||
const commandMenuContextApi = useCommandMenuContextApi();
|
||||
|
||||
const currentObjectNameSingular =
|
||||
commandMenuContextApi.objectMetadataItem.nameSingular;
|
||||
|
||||
const isWorkflow =
|
||||
currentObjectNameSingular === CoreObjectNameSingular.Workflow;
|
||||
|
||||
const selectedWorkflowRecordIds = isWorkflow
|
||||
? commandMenuContextApi.selectedRecords
|
||||
.map((record) => record.id)
|
||||
.filter(isDefined)
|
||||
: [];
|
||||
|
||||
if (selectedWorkflowRecordIds.length > 0) {
|
||||
return (
|
||||
<CommandMenuContextProviderServerItemsWithWorkflowEnrichment
|
||||
isInSidePanel={isInSidePanel}
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
commandMenuContextApi={commandMenuContextApi}
|
||||
selectedWorkflowRecordIds={selectedWorkflowRecordIds}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderServerItemsWithWorkflowEnrichment>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<CommandMenuContextProviderServerItemsContent
|
||||
isInSidePanel={isInSidePanel}
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
commandMenuContextApi={commandMenuContextApi}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderServerItemsContent>
|
||||
);
|
||||
};
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
import {
|
||||
CommandMenuContext,
|
||||
type CommandMenuContextType,
|
||||
} from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { useCommandMenuItemFrontComponentCommands } from '@/command-menu-item/server-items/hooks/useCommandMenuItemFrontComponentCommands';
|
||||
import { type CommandMenuContextApi } from 'twenty-shared/types';
|
||||
|
||||
type CommandMenuContextProviderServerItemsContentProps = {
|
||||
isInSidePanel: CommandMenuContextType['isInSidePanel'];
|
||||
displayType: CommandMenuContextType['displayType'];
|
||||
containerType: CommandMenuContextType['containerType'];
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export const CommandMenuContextProviderServerItemsContent = ({
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
children,
|
||||
commandMenuContextApi,
|
||||
}: CommandMenuContextProviderServerItemsContentProps & {
|
||||
commandMenuContextApi: CommandMenuContextApi;
|
||||
}) => {
|
||||
const commandMenuItemFrontComponentActions =
|
||||
useCommandMenuItemFrontComponentCommands(commandMenuContextApi);
|
||||
|
||||
return (
|
||||
<CommandMenuContext.Provider
|
||||
value={{
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
commandMenuItems: commandMenuItemFrontComponentActions,
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContext.Provider>
|
||||
);
|
||||
};
|
||||
+65
@@ -0,0 +1,65 @@
|
||||
import { type CommandMenuContextApi } from 'twenty-shared/types';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { useWorkflowsWithCurrentVersions } from '@/command-menu-item/server-items/hooks/useWorkflowsWithCurrentVersions';
|
||||
|
||||
import { CommandMenuContextProviderServerItemsContent } from './CommandMenuContextProviderServerItemsContent';
|
||||
|
||||
type CommandMenuContextProviderServerItemsWithWorkflowEnrichmentProps = {
|
||||
isInSidePanel: CommandMenuContextType['isInSidePanel'];
|
||||
displayType: CommandMenuContextType['displayType'];
|
||||
containerType: CommandMenuContextType['containerType'];
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export const CommandMenuContextProviderServerItemsWithWorkflowEnrichment = ({
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
children,
|
||||
commandMenuContextApi,
|
||||
selectedWorkflowRecordIds,
|
||||
}: CommandMenuContextProviderServerItemsWithWorkflowEnrichmentProps & {
|
||||
commandMenuContextApi: CommandMenuContextApi;
|
||||
selectedWorkflowRecordIds: string[];
|
||||
}) => {
|
||||
const workflowsWithCurrentVersions = useWorkflowsWithCurrentVersions(
|
||||
selectedWorkflowRecordIds,
|
||||
);
|
||||
|
||||
const enrichedSelectedRecords = commandMenuContextApi.selectedRecords.map(
|
||||
(record) => {
|
||||
const workflowWithCurrentVersion = workflowsWithCurrentVersions.find(
|
||||
(workflow) => workflow.id === record.id,
|
||||
);
|
||||
|
||||
if (!isDefined(workflowWithCurrentVersion)) {
|
||||
return record;
|
||||
}
|
||||
|
||||
return {
|
||||
...record,
|
||||
currentVersion: workflowWithCurrentVersion.currentVersion,
|
||||
versions: workflowWithCurrentVersion.versions,
|
||||
statuses: workflowWithCurrentVersion.statuses,
|
||||
};
|
||||
},
|
||||
);
|
||||
|
||||
const enrichedCommandMenuContextApi = {
|
||||
...commandMenuContextApi,
|
||||
selectedRecords: enrichedSelectedRecords,
|
||||
};
|
||||
|
||||
return (
|
||||
<CommandMenuContextProviderServerItemsContent
|
||||
isInSidePanel={isInSidePanel}
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
commandMenuContextApi={enrichedCommandMenuContextApi}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderServerItemsContent>
|
||||
);
|
||||
};
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user