Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aac099f2e8 | ||
|
|
f262437da6 | ||
|
|
15d0970f72 | ||
|
|
1adc325887 | ||
|
|
5726bd6e17 | ||
|
|
102b49f919 | ||
|
|
2af3121c51 | ||
|
|
a024a04e01 | ||
|
|
f0c83434a7 | ||
|
|
b699619756 | ||
|
|
b2f053490d | ||
|
|
21de221420 | ||
|
|
a3c0c62506 | ||
|
|
d9b3507866 | ||
|
|
b346f4fb59 | ||
|
|
390ae34ed8 | ||
|
|
2c5af2654d | ||
|
|
6cbc7725b7 | ||
|
|
744ef3aa9d | ||
|
|
fe59c333ac | ||
|
|
6c0da189cb | ||
|
|
ef92d2d321 | ||
|
|
00c3cd1051 | ||
|
|
99f885306e | ||
|
|
413d1124bb | ||
|
|
5aea16f070 | ||
|
|
ab5fb1f658 | ||
|
|
2f542d6763 | ||
|
|
4ac38449cb | ||
|
|
dab4cbcb7d | ||
|
|
a73f586619 | ||
|
|
d1126f507d | ||
|
|
e4e7137660 | ||
|
|
7fb8cc1c39 | ||
|
|
3a1f10e572 | ||
|
|
d16299a624 | ||
|
|
61d058bb1f |
@@ -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,
|
||||
|
||||
@@ -1,3 +1,13 @@
|
||||
generated
|
||||
|
||||
# Ignore .twenty build output for all apps
|
||||
.twenty
|
||||
|
||||
# Allow committed fixture metadata (used by dev seeder)
|
||||
!fixtures/**/.twenty
|
||||
fixtures/**/.twenty/*
|
||||
!fixtures/**/.twenty/output
|
||||
fixtures/**/.twenty/output/**
|
||||
!fixtures/**/.twenty/output/manifest.json
|
||||
!fixtures/**/.twenty/output/package.json
|
||||
!fixtures/**/.twenty/output/yarn.lock
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
import path from 'path';
|
||||
|
||||
import { buildAndValidateManifest } from '@/cli/utilities/build/manifest/build-and-validate-manifest';
|
||||
import { buildApplication } from '@/cli/utilities/build/common/build-application';
|
||||
import { manifestUpdateChecksums } from '@/cli/utilities/build/manifest/manifest-update-checksums';
|
||||
import { writeManifestToOutput } from '@/cli/utilities/build/manifest/manifest-writer';
|
||||
|
||||
const FIXTURE_APPS = ['hello-world-app', 'postcard-app', 'minimal-app'];
|
||||
|
||||
const buildFixture = async (fixtureName: string): Promise<void> => {
|
||||
const appPath = path.resolve(__dirname, fixtureName);
|
||||
|
||||
console.log(`\n--- Building fixture: ${fixtureName} ---`);
|
||||
console.log(` App path: ${appPath}`);
|
||||
|
||||
const manifestResult = await buildAndValidateManifest(appPath);
|
||||
|
||||
if (!manifestResult.success) {
|
||||
console.error(` FAILED to build manifest: ${manifestResult.errors.join(', ')}`);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const { manifest, filePaths } = manifestResult;
|
||||
|
||||
for (const warning of manifestResult.warnings) {
|
||||
console.warn(` Warning: ${warning}`);
|
||||
}
|
||||
|
||||
const buildResult = await buildApplication({ appPath, manifest, filePaths });
|
||||
|
||||
const updatedManifest = manifestUpdateChecksums({
|
||||
manifest,
|
||||
builtFileInfos: buildResult.builtFileInfos,
|
||||
});
|
||||
|
||||
await writeManifestToOutput(appPath, updatedManifest);
|
||||
|
||||
console.log(` Built ${buildResult.builtFileInfos.size} files`);
|
||||
console.log(` Output: ${path.join(appPath, '.twenty', 'output')}`);
|
||||
};
|
||||
|
||||
const main = async () => {
|
||||
for (const fixture of FIXTURE_APPS) {
|
||||
await buildFixture(fixture);
|
||||
}
|
||||
|
||||
console.log('\nDone.');
|
||||
};
|
||||
|
||||
main().catch((error) => {
|
||||
console.error('Fatal error:', error);
|
||||
process.exit(1);
|
||||
});
|
||||
@@ -0,0 +1,2 @@
|
||||
generated
|
||||
node_modules
|
||||
@@ -0,0 +1,404 @@
|
||||
{
|
||||
"application": {
|
||||
"universalIdentifier": "6563e091-9f5b-4026-a3ea-7e3b3d09e218",
|
||||
"displayName": "Hello world",
|
||||
"description": "",
|
||||
"defaultRoleUniversalIdentifier": "9238bc7b-d38f-4a1c-9d19-31ab7bc67a2f",
|
||||
"yarnLockChecksum": null,
|
||||
"packageJsonChecksum": null,
|
||||
"apiClientChecksum": "6db455b2541abbd2d4e9f85469bdc532",
|
||||
"preInstallLogicFunctionUniversalIdentifier": "1272ffdb-8e2f-492c-ab37-66c2b97e9c23",
|
||||
"postInstallLogicFunctionUniversalIdentifier": "7a3f4684-51db-494d-833b-a747a3b90507"
|
||||
},
|
||||
"objects": [
|
||||
{
|
||||
"universalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"nameSingular": "exampleItem",
|
||||
"namePlural": "exampleItems",
|
||||
"labelSingular": "Example item",
|
||||
"labelPlural": "Example items",
|
||||
"description": "A sample custom object",
|
||||
"icon": "IconBox",
|
||||
"labelIdentifierFieldMetadataUniversalIdentifier": "d2d7f6cd-33f6-456f-bf00-17adeca926ba",
|
||||
"fields": [
|
||||
{
|
||||
"universalIdentifier": "d2d7f6cd-33f6-456f-bf00-17adeca926ba",
|
||||
"type": "TEXT",
|
||||
"name": "name",
|
||||
"label": "Name",
|
||||
"description": "Name of the example item",
|
||||
"icon": "IconAbc"
|
||||
},
|
||||
{
|
||||
"name": "id",
|
||||
"label": "Id",
|
||||
"description": "Id",
|
||||
"icon": "Icon123",
|
||||
"isNullable": false,
|
||||
"defaultValue": "uuid",
|
||||
"type": "UUID",
|
||||
"universalIdentifier": "5ba62991-6034-555c-b984-5e84897eaa9f"
|
||||
},
|
||||
{
|
||||
"name": "createdAt",
|
||||
"label": "Creation date",
|
||||
"description": "Creation date",
|
||||
"icon": "IconCalendar",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "8b616045-237c-574d-8689-73f06acff8d8"
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"label": "Last update",
|
||||
"description": "Last time the record was changed",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "ced5587d-d9de-51bf-9ad0-74af6198fca4"
|
||||
},
|
||||
{
|
||||
"name": "deletedAt",
|
||||
"label": "Deleted at",
|
||||
"description": "Deletion date",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "674ee694-0b0f-557f-993c-2b1404db0811"
|
||||
},
|
||||
{
|
||||
"name": "createdBy",
|
||||
"label": "Created by",
|
||||
"description": "The creator of the record",
|
||||
"icon": "IconCreativeCommonsSa",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "5ed1503f-2803-59d1-9b27-e4f1701b8c2a"
|
||||
},
|
||||
{
|
||||
"name": "updatedBy",
|
||||
"label": "Updated by",
|
||||
"description": "The workspace member who last updated the record",
|
||||
"icon": "IconUserCircle",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "3d3a80b4-14a0-55a0-b534-1b23f043c1d5"
|
||||
},
|
||||
{
|
||||
"name": "position",
|
||||
"label": "Position",
|
||||
"description": "Position",
|
||||
"icon": "IconHierarchy2",
|
||||
"isNullable": false,
|
||||
"defaultValue": 0,
|
||||
"type": "POSITION",
|
||||
"universalIdentifier": "a714b336-d765-5dff-b34b-fcc6ab037e3b"
|
||||
},
|
||||
{
|
||||
"name": "searchVector",
|
||||
"label": "Search vector",
|
||||
"icon": "IconSearch",
|
||||
"description": "Search vector",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "TS_VECTOR",
|
||||
"universalIdentifier": "068064e1-c9da-5772-9293-9e57183cee67"
|
||||
},
|
||||
{
|
||||
"name": "timelineActivities",
|
||||
"label": "Timeline Activities",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "e5feca94-536c-5779-8c33-05e39705bcd7",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3d140ea1-fc57-5c8c-96fd-7d1525ed6a69",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5"
|
||||
},
|
||||
{
|
||||
"name": "favorites",
|
||||
"label": "Favorites",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "3781cc69-9d3f-58d0-927c-c1c552f37a1d",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3043fec0-091c-59ff-95ef-b9d95fbfa3e6",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860"
|
||||
},
|
||||
{
|
||||
"name": "attachments",
|
||||
"label": "Attachments",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "3ad98da8-42e1-50e3-b73b-8c06fa720e2a",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "e1232464-8f83-5459-aa94-a40cda8d949a",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a"
|
||||
},
|
||||
{
|
||||
"name": "noteTargets",
|
||||
"label": "Note Targets",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "67cae4ab-7d3d-5a66-8d06-ca24568ebe76",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "9eeb7b0d-37e4-5a93-97c9-3dbb77fdb318",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400"
|
||||
},
|
||||
{
|
||||
"name": "taskTargets",
|
||||
"label": "Task Targets",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "a3b9f10c-f780-58cc-bbc9-402ed5f136f6",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "5d46d303-452d-5c9c-ab64-0a9768b87956",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"objectUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"universalIdentifier": "770d32c2-cf12-4ab2-b66d-73f92dc239b5",
|
||||
"type": "NUMBER",
|
||||
"name": "priority",
|
||||
"label": "Priority",
|
||||
"description": "Priority level for the example item (1-10)"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconTimelineEvent",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "3d140ea1-fc57-5c8c-96fd-7d1525ed6a69",
|
||||
"objectUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "e5feca94-536c-5779-8c33-05e39705bcd7",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-9a2b-4c3d-a4e5-f6a7b8c9d0e1"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconHeart",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "3043fec0-091c-59ff-95ef-b9d95fbfa3e6",
|
||||
"objectUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3781cc69-9d3f-58d0-927c-c1c552f37a1d",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "RELATION"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconFileImport",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "e1232464-8f83-5459-aa94-a40cda8d949a",
|
||||
"objectUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3ad98da8-42e1-50e3-b73b-8c06fa720e2a",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f634-435d-ab8d-e1168b375c69"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "9eeb7b0d-37e4-5a93-97c9-3dbb77fdb318",
|
||||
"objectUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "67cae4ab-7d3d-5a66-8d06-ca24568ebe76",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f635-435d-ab8d-e1168b375c70"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "5d46d303-452d-5c9c-ab64-0a9768b87956",
|
||||
"objectUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "a3b9f10c-f780-58cc-bbc9-402ed5f136f6",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f636-435d-ab8d-e1168b375c71"
|
||||
}
|
||||
],
|
||||
"roles": [
|
||||
{
|
||||
"universalIdentifier": "9238bc7b-d38f-4a1c-9d19-31ab7bc67a2f",
|
||||
"label": "Hello world default function role",
|
||||
"description": "Hello world default function role",
|
||||
"canReadAllObjectRecords": true,
|
||||
"canUpdateAllObjectRecords": true,
|
||||
"canSoftDeleteAllObjectRecords": true,
|
||||
"canDestroyAllObjectRecords": false
|
||||
}
|
||||
],
|
||||
"skills": [
|
||||
{
|
||||
"universalIdentifier": "d0940029-9d3c-40be-903a-52d65393028f",
|
||||
"name": "example-skill",
|
||||
"label": "Example Skill",
|
||||
"description": "A sample skill for your application",
|
||||
"icon": "IconBrain",
|
||||
"content": "Add your skill instructions here. Skills provide context and capabilities to AI agents."
|
||||
}
|
||||
],
|
||||
"agents": [],
|
||||
"logicFunctions": [
|
||||
{
|
||||
"universalIdentifier": "2baa26eb-9aaf-4856-a4f4-30d6fd6480ee",
|
||||
"name": "hello-world-logic-function",
|
||||
"description": "A simple logic function",
|
||||
"timeoutSeconds": 5,
|
||||
"httpRouteTriggerSettings": {
|
||||
"path": "/hello-world-logic-function",
|
||||
"httpMethod": "GET",
|
||||
"isAuthRequired": false
|
||||
},
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "src/logic-functions/hello-world.ts",
|
||||
"builtHandlerPath": "src/logic-functions/hello-world.mjs",
|
||||
"builtHandlerChecksum": "f1a0565e18366e6c531438631137d23b"
|
||||
},
|
||||
{
|
||||
"universalIdentifier": "7a3f4684-51db-494d-833b-a747a3b90507",
|
||||
"name": "post-install",
|
||||
"description": "Runs after installation to set up the application.",
|
||||
"timeoutSeconds": 300,
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "src/logic-functions/post-install.ts",
|
||||
"builtHandlerPath": "src/logic-functions/post-install.mjs",
|
||||
"builtHandlerChecksum": "7b016a1819c4e2355a80a895464032a5"
|
||||
},
|
||||
{
|
||||
"universalIdentifier": "1272ffdb-8e2f-492c-ab37-66c2b97e9c23",
|
||||
"name": "pre-install",
|
||||
"description": "Runs before installation to prepare the application.",
|
||||
"timeoutSeconds": 300,
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "src/logic-functions/pre-install.ts",
|
||||
"builtHandlerPath": "src/logic-functions/pre-install.mjs",
|
||||
"builtHandlerChecksum": "e2151e31924929390a5933ebf7419465"
|
||||
}
|
||||
],
|
||||
"frontComponents": [
|
||||
{
|
||||
"universalIdentifier": "d371f098-5b2c-42f0-898d-94459f1ee337",
|
||||
"name": "hello-world-front-component",
|
||||
"description": "A sample front component",
|
||||
"componentName": "HelloWorld",
|
||||
"sourceComponentPath": "src/front-components/hello-world.tsx",
|
||||
"builtComponentPath": "src/front-components/hello-world.mjs",
|
||||
"builtComponentChecksum": "826d5d3f633496d7c2a4f902589b83ed",
|
||||
"isHeadless": false
|
||||
}
|
||||
],
|
||||
"publicAssets": [],
|
||||
"views": [
|
||||
{
|
||||
"universalIdentifier": "e004df40-29f3-47ba-b39d-d3a5c444367a",
|
||||
"name": "All example items",
|
||||
"objectUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"icon": "IconList",
|
||||
"key": "INDEX",
|
||||
"position": 0,
|
||||
"fields": [
|
||||
{
|
||||
"universalIdentifier": "496c40c2-5766-419c-93bf-20fdad3f34bb",
|
||||
"fieldMetadataUniversalIdentifier": "d2d7f6cd-33f6-456f-bf00-17adeca926ba",
|
||||
"position": 0,
|
||||
"isVisible": true,
|
||||
"size": 200
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"navigationMenuItems": [
|
||||
{
|
||||
"universalIdentifier": "10f90627-e9c2-44b7-9742-bed77e3d1b17",
|
||||
"name": "example-navigation-menu-item",
|
||||
"icon": "IconList",
|
||||
"color": "blue",
|
||||
"position": 0,
|
||||
"viewUniversalIdentifier": "e004df40-29f3-47ba-b39d-d3a5c444367a"
|
||||
}
|
||||
],
|
||||
"pageLayouts": []
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "hello-world-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"app:dev": "twenty app:dev",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import { defineApplication } from 'twenty-sdk';
|
||||
import { DEFAULT_ROLE_UNIVERSAL_IDENTIFIER } from './src/roles/default-role';
|
||||
|
||||
export const APPLICATION_UNIVERSAL_IDENTIFIER =
|
||||
'6563e091-9f5b-4026-a3ea-7e3b3d09e218';
|
||||
|
||||
export default defineApplication({
|
||||
universalIdentifier: APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
displayName: 'Hello world',
|
||||
description: '',
|
||||
defaultRoleUniversalIdentifier: DEFAULT_ROLE_UNIVERSAL_IDENTIFIER,
|
||||
});
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "hello-world-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"app:dev": "twenty app:dev",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
import { defineField, FieldType } from 'twenty-sdk';
|
||||
import { EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER } from 'src/objects/example-object';
|
||||
|
||||
export default defineField({
|
||||
objectUniversalIdentifier: EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER,
|
||||
universalIdentifier: '770d32c2-cf12-4ab2-b66d-73f92dc239b5',
|
||||
type: FieldType.NUMBER,
|
||||
name: 'priority',
|
||||
label: 'Priority',
|
||||
description: 'Priority level for the example item (1-10)',
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
import { defineFrontComponent } from 'twenty-sdk';
|
||||
|
||||
export const HelloWorld = () => {
|
||||
return (
|
||||
<div style={{ padding: '20px', fontFamily: 'sans-serif' }}>
|
||||
<h1>Hello, World!</h1>
|
||||
<p>This is your first front component.</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default defineFrontComponent({
|
||||
universalIdentifier: 'd371f098-5b2c-42f0-898d-94459f1ee337',
|
||||
name: 'hello-world-front-component',
|
||||
description: 'A sample front component',
|
||||
component: HelloWorld,
|
||||
});
|
||||
@@ -0,0 +1,18 @@
|
||||
import { defineLogicFunction } from 'twenty-sdk';
|
||||
|
||||
const handler = async (): Promise<{ message: string }> => {
|
||||
return { message: 'Hello, World!' };
|
||||
};
|
||||
|
||||
export default defineLogicFunction({
|
||||
universalIdentifier: '2baa26eb-9aaf-4856-a4f4-30d6fd6480ee',
|
||||
name: 'hello-world-logic-function',
|
||||
description: 'A simple logic function',
|
||||
timeoutSeconds: 5,
|
||||
handler,
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/hello-world-logic-function',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
},
|
||||
});
|
||||
@@ -0,0 +1,13 @@
|
||||
import { definePostInstallLogicFunction, type InstallLogicFunctionPayload } from 'twenty-sdk';
|
||||
|
||||
const handler = async (payload: InstallLogicFunctionPayload): Promise<void> => {
|
||||
console.log('Post install logic function executed successfully!', payload.previousVersion);
|
||||
};
|
||||
|
||||
export default definePostInstallLogicFunction({
|
||||
universalIdentifier: '7a3f4684-51db-494d-833b-a747a3b90507',
|
||||
name: 'post-install',
|
||||
description: 'Runs after installation to set up the application.',
|
||||
timeoutSeconds: 300,
|
||||
handler,
|
||||
});
|
||||
@@ -0,0 +1,13 @@
|
||||
import { definePreInstallLogicFunction, type InstallLogicFunctionPayload } from 'twenty-sdk';
|
||||
|
||||
const handler = async (payload: InstallLogicFunctionPayload): Promise<void> => {
|
||||
console.log('Pre install logic function executed successfully!', payload.previousVersion);
|
||||
};
|
||||
|
||||
export default definePreInstallLogicFunction({
|
||||
universalIdentifier: '1272ffdb-8e2f-492c-ab37-66c2b97e9c23',
|
||||
name: 'pre-install',
|
||||
description: 'Runs before installation to prepare the application.',
|
||||
timeoutSeconds: 300,
|
||||
handler,
|
||||
});
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import { defineNavigationMenuItem } from 'twenty-sdk';
|
||||
import { EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER } from 'src/views/example-view';
|
||||
|
||||
export default defineNavigationMenuItem({
|
||||
universalIdentifier: '10f90627-e9c2-44b7-9742-bed77e3d1b17',
|
||||
name: 'example-navigation-menu-item',
|
||||
icon: 'IconList',
|
||||
color: 'blue',
|
||||
position: 0,
|
||||
viewUniversalIdentifier: EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER,
|
||||
});
|
||||
@@ -0,0 +1,28 @@
|
||||
import { defineObject, FieldType } from 'twenty-sdk';
|
||||
|
||||
export const EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER =
|
||||
'dfd43356-39b3-4b55-b4a7-279bec689928';
|
||||
|
||||
export const NAME_FIELD_UNIVERSAL_IDENTIFIER =
|
||||
'd2d7f6cd-33f6-456f-bf00-17adeca926ba';
|
||||
|
||||
export default defineObject({
|
||||
universalIdentifier: EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER,
|
||||
nameSingular: 'exampleItem',
|
||||
namePlural: 'exampleItems',
|
||||
labelSingular: 'Example item',
|
||||
labelPlural: 'Example items',
|
||||
description: 'A sample custom object',
|
||||
icon: 'IconBox',
|
||||
labelIdentifierFieldMetadataUniversalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
fields: [
|
||||
{
|
||||
universalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
type: FieldType.TEXT,
|
||||
name: 'name',
|
||||
label: 'Name',
|
||||
description: 'Name of the example item',
|
||||
icon: 'IconAbc',
|
||||
},
|
||||
],
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { defineRole } from 'twenty-sdk';
|
||||
|
||||
export const DEFAULT_ROLE_UNIVERSAL_IDENTIFIER =
|
||||
'9238bc7b-d38f-4a1c-9d19-31ab7bc67a2f';
|
||||
|
||||
export default defineRole({
|
||||
universalIdentifier: DEFAULT_ROLE_UNIVERSAL_IDENTIFIER,
|
||||
label: 'Hello world default function role',
|
||||
description: 'Hello world default function role',
|
||||
canReadAllObjectRecords: true,
|
||||
canUpdateAllObjectRecords: true,
|
||||
canSoftDeleteAllObjectRecords: true,
|
||||
canDestroyAllObjectRecords: false,
|
||||
});
|
||||
@@ -0,0 +1,13 @@
|
||||
import { defineSkill } from 'twenty-sdk';
|
||||
|
||||
export const EXAMPLE_SKILL_UNIVERSAL_IDENTIFIER =
|
||||
'd0940029-9d3c-40be-903a-52d65393028f';
|
||||
|
||||
export default defineSkill({
|
||||
universalIdentifier: EXAMPLE_SKILL_UNIVERSAL_IDENTIFIER,
|
||||
name: 'example-skill',
|
||||
label: 'Example Skill',
|
||||
description: 'A sample skill for your application',
|
||||
icon: 'IconBrain',
|
||||
content: 'Add your skill instructions here. Skills provide context and capabilities to AI agents.',
|
||||
});
|
||||
@@ -0,0 +1,22 @@
|
||||
import { defineView } from 'twenty-sdk';
|
||||
import { EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER, NAME_FIELD_UNIVERSAL_IDENTIFIER } from 'src/objects/example-object';
|
||||
|
||||
export const EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER = 'e004df40-29f3-47ba-b39d-d3a5c444367a';
|
||||
|
||||
export default defineView({
|
||||
universalIdentifier: EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER,
|
||||
name: 'All example items',
|
||||
objectUniversalIdentifier: EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER,
|
||||
icon: 'IconList',
|
||||
key: 'INDEX',
|
||||
position: 0,
|
||||
fields: [
|
||||
{
|
||||
universalIdentifier: '496c40c2-5766-419c-93bf-20fdad3f34bb',
|
||||
fieldMetadataUniversalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
position: 0,
|
||||
isVisible: true,
|
||||
size: 200,
|
||||
},
|
||||
],
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2020",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"jsx": "react-jsx",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"src/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["**/*"],
|
||||
"exclude": ["node_modules", "dist", ".twenty"]
|
||||
}
|
||||
@@ -0,0 +1,342 @@
|
||||
{
|
||||
"application": {
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000001",
|
||||
"displayName": "Root App",
|
||||
"description": "An app with all entities at root level",
|
||||
"icon": "IconFolder",
|
||||
"defaultRoleUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000002",
|
||||
"yarnLockChecksum": "d41d8cd98f00b204e9800998ecf8427e",
|
||||
"packageJsonChecksum": "ac87abb5113d9d09be71481efc123800",
|
||||
"apiClientChecksum": null
|
||||
},
|
||||
"objects": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"nameSingular": "myNote",
|
||||
"namePlural": "myNotes",
|
||||
"labelSingular": "My note",
|
||||
"labelPlural": "My notes",
|
||||
"description": "A simple root-level object",
|
||||
"icon": "IconNote",
|
||||
"labelIdentifierFieldMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000031",
|
||||
"fields": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000031",
|
||||
"type": "TEXT",
|
||||
"label": "Title",
|
||||
"name": "title"
|
||||
},
|
||||
{
|
||||
"name": "id",
|
||||
"label": "Id",
|
||||
"description": "Id",
|
||||
"icon": "Icon123",
|
||||
"isNullable": false,
|
||||
"defaultValue": "uuid",
|
||||
"type": "UUID",
|
||||
"universalIdentifier": "5bdb4f57-a349-56d0-b421-845fd55b3026"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"label": "Name",
|
||||
"description": "Name",
|
||||
"icon": "IconAbc",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "TEXT",
|
||||
"universalIdentifier": "86cc7b06-26de-5b7b-bf4a-31fa246dfd90"
|
||||
},
|
||||
{
|
||||
"name": "createdAt",
|
||||
"label": "Creation date",
|
||||
"description": "Creation date",
|
||||
"icon": "IconCalendar",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "abe3bc69-1a51-5814-a722-74f5a025e92a"
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"label": "Last update",
|
||||
"description": "Last time the record was changed",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "c296d408-9720-5a86-8586-3490fbf04b86"
|
||||
},
|
||||
{
|
||||
"name": "deletedAt",
|
||||
"label": "Deleted at",
|
||||
"description": "Deletion date",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "488333a2-f4ff-5790-88ef-21f07f8f1985"
|
||||
},
|
||||
{
|
||||
"name": "createdBy",
|
||||
"label": "Created by",
|
||||
"description": "The creator of the record",
|
||||
"icon": "IconCreativeCommonsSa",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "fba6e01b-6579-554e-ad64-a676003c8e68"
|
||||
},
|
||||
{
|
||||
"name": "updatedBy",
|
||||
"label": "Updated by",
|
||||
"description": "The workspace member who last updated the record",
|
||||
"icon": "IconUserCircle",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "fa60f87d-15c8-5ff7-9da0-191fa14a922f"
|
||||
},
|
||||
{
|
||||
"name": "position",
|
||||
"label": "Position",
|
||||
"description": "Position",
|
||||
"icon": "IconHierarchy2",
|
||||
"isNullable": false,
|
||||
"defaultValue": 0,
|
||||
"type": "POSITION",
|
||||
"universalIdentifier": "4a5d7791-ddc9-53ee-bc46-699da7373290"
|
||||
},
|
||||
{
|
||||
"name": "searchVector",
|
||||
"label": "Search vector",
|
||||
"icon": "IconSearch",
|
||||
"description": "Search vector",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "TS_VECTOR",
|
||||
"universalIdentifier": "0f00bc3b-f313-5206-8496-842af20a538a"
|
||||
},
|
||||
{
|
||||
"name": "timelineActivities",
|
||||
"label": "Timeline Activities",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "12c84c1c-6e3f-54c5-a9a8-e93c7b46ac35",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "7e28b1ea-9a94-5d36-bc03-3f12f476867a",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5"
|
||||
},
|
||||
{
|
||||
"name": "favorites",
|
||||
"label": "Favorites",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "ed80c73b-25ff-5a3c-99c7-e27fa2f2611e",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "698f12fe-3feb-55e3-b6cc-73375f1a8ae6",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860"
|
||||
},
|
||||
{
|
||||
"name": "attachments",
|
||||
"label": "Attachments",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "56a872c8-7a1e-563d-8772-3978c2c5c220",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "721b12d8-7a3d-5e13-b8d5-62b3ad8cb8b5",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a"
|
||||
},
|
||||
{
|
||||
"name": "noteTargets",
|
||||
"label": "Note Targets",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "011595e8-7524-5ec7-9fbc-4bd3c42d7d24",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "94b6f269-fc9a-5bcd-af5b-2bdac69f276b",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400"
|
||||
},
|
||||
{
|
||||
"name": "taskTargets",
|
||||
"label": "Task Targets",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "dd734fa3-26c3-53dd-91aa-577c313e1fa4",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "50da3cfa-dea5-5c9b-b1b7-cb615e1df4c3",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconTimelineEvent",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "7e28b1ea-9a94-5d36-bc03-3f12f476867a",
|
||||
"objectUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "12c84c1c-6e3f-54c5-a9a8-e93c7b46ac35",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-9a2b-4c3d-a4e5-f6a7b8c9d0e1"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconHeart",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "698f12fe-3feb-55e3-b6cc-73375f1a8ae6",
|
||||
"objectUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "ed80c73b-25ff-5a3c-99c7-e27fa2f2611e",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "RELATION"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconFileImport",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "721b12d8-7a3d-5e13-b8d5-62b3ad8cb8b5",
|
||||
"objectUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "56a872c8-7a1e-563d-8772-3978c2c5c220",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f634-435d-ab8d-e1168b375c69"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "94b6f269-fc9a-5bcd-af5b-2bdac69f276b",
|
||||
"objectUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "011595e8-7524-5ec7-9fbc-4bd3c42d7d24",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f635-435d-ab8d-e1168b375c70"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "50da3cfa-dea5-5c9b-b1b7-cb615e1df4c3",
|
||||
"objectUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "dd734fa3-26c3-53dd-91aa-577c313e1fa4",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f636-435d-ab8d-e1168b375c71"
|
||||
}
|
||||
],
|
||||
"roles": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000040",
|
||||
"label": "My role",
|
||||
"description": "A simple root-level role",
|
||||
"canReadAllObjectRecords": true,
|
||||
"canUpdateAllObjectRecords": false,
|
||||
"canSoftDeleteAllObjectRecords": false,
|
||||
"canDestroyAllObjectRecords": false,
|
||||
"canUpdateAllSettings": false,
|
||||
"canBeAssignedToAgents": false,
|
||||
"canBeAssignedToUsers": true,
|
||||
"canBeAssignedToApiKeys": false
|
||||
}
|
||||
],
|
||||
"skills": [],
|
||||
"agents": [],
|
||||
"logicFunctions": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000010",
|
||||
"name": "my-function",
|
||||
"timeoutSeconds": 5,
|
||||
"httpRouteTriggerSettings": {
|
||||
"path": "/my-function",
|
||||
"httpMethod": "GET",
|
||||
"isAuthRequired": false
|
||||
},
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "my.function.ts",
|
||||
"builtHandlerPath": "my.function.mjs",
|
||||
"builtHandlerChecksum": "71f0af6b9dfeef884cc81ae75ca6ecb0"
|
||||
}
|
||||
],
|
||||
"frontComponents": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000020",
|
||||
"name": "my-component",
|
||||
"description": "A root-level front component",
|
||||
"componentName": "MyComponent",
|
||||
"sourceComponentPath": "my.front-component.tsx",
|
||||
"builtComponentPath": "my.front-component.mjs",
|
||||
"builtComponentChecksum": "37b905c5467584f03fa5ab2c8a05bc88",
|
||||
"isHeadless": false
|
||||
}
|
||||
],
|
||||
"publicAssets": [],
|
||||
"views": [],
|
||||
"navigationMenuItems": [],
|
||||
"pageLayouts": []
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "minimal-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"auth:login": "twenty auth:login",
|
||||
"auth:logout": "twenty auth:logout",
|
||||
"auth:status": "twenty auth:status",
|
||||
"auth:switch": "twenty auth:switch",
|
||||
"auth:list": "twenty auth:list",
|
||||
"app:dev": "twenty app:dev",
|
||||
"entity:add": "twenty entity:add",
|
||||
"function:logs": "twenty function:logs",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"help": "twenty help",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "postcard-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"auth:login": "twenty auth:login",
|
||||
"auth:logout": "twenty auth:logout",
|
||||
"auth:status": "twenty auth:status",
|
||||
"auth:switch": "twenty auth:switch",
|
||||
"auth:list": "twenty auth:list",
|
||||
"app:dev": "twenty app:dev",
|
||||
"entity:add": "twenty entity:add",
|
||||
"function:logs": "twenty function:logs",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"help": "twenty help",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
@@ -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>
|
||||
|
||||
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>
|
||||
);
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14774,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 +15063,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 +15133,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13326,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 +14154,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 +14177,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 +14778,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 +15067,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 +15137,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13018,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 +13328,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 +14156,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 +14179,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 +14780,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 +15069,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 +15139,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."
|
||||
|
||||
@@ -1350,6 +1350,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 +1794,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 +1853,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 +2515,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 +2577,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 +2736,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 +2940,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 +3303,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 +3340,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 +3505,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 +3550,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 +4144,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 +5555,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 +6180,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 +8047,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 +8315,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 +8702,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 +8923,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 +11436,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 +11892,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 +12139,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 +13011,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 +13321,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 +14149,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 +14172,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 +14773,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 +15062,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 +15132,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13326,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 +14154,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 +14177,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 +14778,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 +15067,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 +15137,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13326,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 +14154,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 +14177,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 +14778,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 +15067,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 +15137,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
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13326,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 +14154,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 +14177,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 +14778,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 +15067,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 +15137,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13326,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 +14154,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 +14177,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 +14778,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 +15067,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 +15137,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1350,6 +1350,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 +1794,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 +1853,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 +2515,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 +2577,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 +2736,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 +2940,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 +3303,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 +3340,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 +3505,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 +3550,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 +4144,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 +5555,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 +6180,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 +8047,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 +8315,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 +8702,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 +8923,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 +11436,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 +11892,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 +12139,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 +13011,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 +13319,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 +14147,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 +14170,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 +14769,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 +15058,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 +15128,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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.
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8709,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 +8930,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 +11445,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 +11901,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 +12148,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 +13028,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 +13338,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 +14166,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 +14189,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 +14790,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 +15079,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 +15149,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."
|
||||
|
||||
@@ -1355,6 +1355,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 +1799,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 +1858,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 +2520,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 +2582,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 +2741,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 +2945,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 +3308,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 +3345,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 +3510,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 +3555,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 +4149,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 +5560,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 +6185,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 +8052,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 +8320,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 +8707,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 +8928,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 +11441,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 +11897,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 +12144,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 +13016,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 +13324,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 +14152,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 +14175,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 +14776,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 +15065,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 +15135,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."
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user