Compare commits

..
Author SHA1 Message Date
Weiko 24b074f436 fix 2026-03-11 15:32:57 +01:00
Weiko 181b48105e RLS: Allow Relation predicates other than workspace member 2026-03-11 14:16:53 +01:00
393 changed files with 5880 additions and 7990 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"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 -1
View File
@@ -1,6 +1,6 @@
{
"install": "yarn install",
"start": "(sudo service docker start || service docker start || true) && bash packages/twenty-utils/setup-dev-env.sh && npx nx database:reset twenty-server",
"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",
"terminals": [
{
"name": "Development Server",
-19
View File
@@ -1,19 +0,0 @@
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 }
-182
View File
@@ -1,182 +0,0 @@
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
@@ -1,66 +0,0 @@
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
+4 -13
View File
@@ -188,22 +188,13 @@ 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()`
## Dev Environment Setup
## CI Environment (GitHub Actions)
All dev environments (Claude Code web, Cursor, local) use one script:
When running in CI, the dev environment is **not** pre-configured. Dependencies are installed but builds, env files, and databases are not set up.
```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
- **Before running tests, builds, lint, type checks, or DB operations**, run: `bash packages/twenty-utils/setup-dev-env.sh`
- **Skip the setup script** for tasks that only read code — architecture questions, code review, documentation, etc.
**Note:** CI workflows (GitHub Actions) manage services via Actions service containers and run setup steps individually — they don't use this script.
- The script is idempotent and safe to run multiple times.
## Important Files
- `nx.json` - Nx workspace configuration with task definitions
-8
View File
@@ -136,14 +136,6 @@
"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,
-1
View File
@@ -164,7 +164,6 @@
"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"
},
-1
View File
@@ -24,7 +24,6 @@
"command": "node dist/cli.cjs"
}
},
"set-local-version": {},
"typecheck": {},
"lint": {},
"test": {
+1 -24
View File
@@ -18,15 +18,6 @@ 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 (
@@ -34,9 +25,6 @@ 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);
@@ -59,20 +47,9 @@ 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,
name: options?.name,
displayName: options?.displayName,
description: options?.description,
});
await new CreateAppCommand().execute(directory, mode);
},
);
@@ -7,7 +7,6 @@ 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,
@@ -16,23 +15,16 @@ 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(options: CreateAppOptions = {}): Promise<void> {
async execute(
directory?: string,
mode: ScaffoldingMode = 'exhaustive',
): Promise<void> {
try {
const { appName, appDisplayName, appDirectory, appDescription } =
await this.getAppInfos(options);
await this.getAppInfos(directory);
const exampleOptions = this.resolveExampleOptions(
options.mode ?? 'exhaustive',
);
const exampleOptions = this.resolveExampleOptions(mode);
await this.validateDirectory(appDirectory);
@@ -62,25 +54,19 @@ export class CreateAppCommand {
}
}
private async getAppInfos(options: CreateAppOptions): Promise<{
private async getAppInfos(directory?: string): 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: () => !hasName,
default: 'my-twenty-app',
when: () => !directory,
default: 'my-awesome-app',
validate: (input) => {
if (input.length === 0) return 'Application name is required';
return true;
@@ -90,33 +76,25 @@ export class CreateAppCommand {
type: 'input',
name: 'displayName',
message: 'Application display name:',
when: () => !hasDisplayName,
default: (answers: { name?: string }) => {
return convertToLabel(
answers?.name ?? options.name ?? directory ?? '',
);
default: (answers: any) => {
return convertToLabel(answers?.name ?? directory);
},
},
{
type: 'input',
name: 'description',
message: 'Application description (optional):',
when: () => !hasDescription,
default: '',
},
]);
const appName = (
options.name ??
name ??
directory ??
'my-twenty-app'
).trim();
const computedName = name ?? directory;
const appDisplayName =
(options.displayName ?? displayName)?.trim() || convertToLabel(appName);
const appName = computedName.trim();
const appDescription = (options.description ?? description ?? '').trim();
const appDisplayName = displayName.trim();
const appDescription = 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,6 +142,13 @@ 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.
@@ -583,14 +590,6 @@ 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,42 +0,0 @@
# 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,57 +289,43 @@ 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 & Code Interpreter
## Logic Functions
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.
Twenty supports logic functions for workflows and custom logic. The execution environment is configured via the `SERVERLESS_TYPE` environment variable.
<Warning>
**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.
**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`.
</Warning>
### Logic Functions - Available Drivers
### Available Drivers
| Driver | Environment Variable | Use Case | Security Level |
|--------|---------------------|----------|----------------|
| 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) |
| 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) |
### Logic Functions - Recommended Configuration
### Recommended Configuration
**For development:**
```bash
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
SERVERLESS_TYPE=LOCAL # default
```
**For production (AWS):**
```bash
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
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
```
**To disable logic functions:**
```bash
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
SERVERLESS_TYPE=DISABLED
```
### 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 `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.
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.
</Note>
File diff suppressed because one or more lines are too long
@@ -1,56 +0,0 @@
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,14 +1,100 @@
import { PageContentSkeletonLoader } from '~/loading/components/PageContentSkeletonLoader';
import { SKELETON_LOADER_HEIGHT_SIZES } from '@/activities/components/SkeletonLoader';
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>
<PageContentSkeletonLoader />
<StyledRightPanelFlexContainer>
<StyledSkeletonHeaderLoader />
<StyledSkeletonAddLoader />
</StyledRightPanelFlexContainer>
<RightPanelSkeleton />
</StyledRightPanelContainer>
);
@@ -13,9 +13,11 @@ 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) {
@@ -23,11 +25,6 @@ const StyledContainer = styled.div`
}
`;
const StyledLeftPanelWrapper = styled.div`
flex-shrink: 0;
padding: 12px 0 12px 8px;
`;
export const UserOrMetadataLoader = () => {
const showAuthModal = useShowAuthModal();
@@ -39,9 +36,7 @@ export const UserOrMetadataLoader = () => {
backdropZIndex={RootStackingContextZIndices.RootModalBackDrop}
/>
)}
<StyledLeftPanelWrapper>
<LeftPanelSkeletonLoader />
</StyledLeftPanelWrapper>
<LeftPanelSkeletonLoader />
<RightPanelSkeletonLoader />
</StyledContainer>
);
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14774,6 +14814,11 @@ 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."
@@ -15063,6 +15108,11 @@ 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."
@@ -15133,11 +15183,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13326,11 +13360,6 @@ 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."
@@ -14154,6 +14183,11 @@ 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
@@ -14177,6 +14211,12 @@ 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"
@@ -14778,6 +14818,11 @@ 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."
@@ -15067,6 +15112,11 @@ 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."
@@ -15137,11 +15187,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13018,6 +13047,11 @@ 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"
@@ -13328,11 +13362,6 @@ 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."
@@ -14156,6 +14185,11 @@ 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
@@ -14179,6 +14213,12 @@ 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"
@@ -14780,6 +14820,11 @@ 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."
@@ -15069,6 +15114,11 @@ 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."
@@ -15139,11 +15189,6 @@ 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."
+90 -45
View File
@@ -1350,11 +1350,6 @@ 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"
@@ -1794,6 +1789,7 @@ 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."
@@ -1853,6 +1849,11 @@ 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"
@@ -2515,6 +2516,7 @@ 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
@@ -2577,11 +2579,6 @@ 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
@@ -2736,6 +2733,11 @@ 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"
@@ -2940,11 +2942,6 @@ 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"
@@ -3303,6 +3300,11 @@ 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"
@@ -3340,11 +3342,6 @@ 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"
@@ -3505,11 +3502,6 @@ 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"
@@ -3550,6 +3542,11 @@ 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"
@@ -4144,6 +4141,12 @@ 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
@@ -5555,6 +5558,11 @@ 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"
@@ -6180,6 +6188,11 @@ 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"
@@ -8047,6 +8060,11 @@ 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"
@@ -8315,6 +8333,11 @@ 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
@@ -8702,6 +8725,11 @@ 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"
@@ -8923,6 +8951,12 @@ 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
@@ -11436,11 +11470,6 @@ 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"
@@ -11892,6 +11921,11 @@ 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"
@@ -12139,11 +12173,6 @@ 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"
@@ -13011,6 +13040,11 @@ 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"
@@ -13321,11 +13355,6 @@ 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."
@@ -14149,6 +14178,11 @@ 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
@@ -14172,6 +14206,12 @@ 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"
@@ -14773,6 +14813,11 @@ 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."
@@ -15062,6 +15107,11 @@ 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."
@@ -15132,11 +15182,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13326,11 +13360,6 @@ 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."
@@ -14154,6 +14183,11 @@ 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
@@ -14177,6 +14211,12 @@ 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"
@@ -14778,6 +14818,11 @@ 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."
@@ -15067,6 +15112,11 @@ 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."
@@ -15137,11 +15187,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13326,11 +13360,6 @@ 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."
@@ -14154,6 +14183,11 @@ 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
@@ -14177,6 +14211,12 @@ 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"
@@ -14778,6 +14818,11 @@ 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."
@@ -15067,6 +15112,11 @@ 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."
@@ -15137,11 +15187,6 @@ 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
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13326,11 +13360,6 @@ 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."
@@ -14154,6 +14183,11 @@ 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
@@ -14177,6 +14211,12 @@ 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"
@@ -14778,6 +14818,11 @@ 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."
@@ -15067,6 +15112,11 @@ 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."
@@ -15137,11 +15187,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13326,11 +13360,6 @@ 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."
@@ -14154,6 +14183,11 @@ 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
@@ -14177,6 +14211,12 @@ 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"
@@ -14778,6 +14818,11 @@ 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."
@@ -15067,6 +15112,11 @@ 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."
@@ -15137,11 +15187,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1350,11 +1350,6 @@ 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,6 +1789,7 @@ 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 ""
@@ -1853,6 +1849,11 @@ 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"
@@ -2515,6 +2516,7 @@ 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
@@ -2577,11 +2579,6 @@ 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
@@ -2736,6 +2733,11 @@ 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"
@@ -2940,11 +2942,6 @@ 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"
@@ -3303,6 +3300,11 @@ 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"
@@ -3340,11 +3342,6 @@ 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"
@@ -3505,11 +3502,6 @@ 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"
@@ -3550,6 +3542,11 @@ 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"
@@ -4144,6 +4141,12 @@ 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
@@ -5555,6 +5558,11 @@ 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"
@@ -6180,6 +6188,11 @@ 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"
@@ -8047,6 +8060,11 @@ 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"
@@ -8315,6 +8333,11 @@ 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
@@ -8702,6 +8725,11 @@ 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"
@@ -8923,6 +8951,12 @@ 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
@@ -11436,11 +11470,6 @@ 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"
@@ -11892,6 +11921,11 @@ 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"
@@ -12139,11 +12173,6 @@ 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"
@@ -13011,6 +13040,11 @@ 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"
@@ -13319,11 +13353,6 @@ 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."
@@ -14147,6 +14176,11 @@ 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
@@ -14170,6 +14204,12 @@ 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"
@@ -14769,6 +14809,11 @@ 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."
@@ -15058,6 +15103,11 @@ 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."
@@ -15128,11 +15178,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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.
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8709,6 +8732,11 @@ 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"
@@ -8930,6 +8958,12 @@ 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
@@ -11445,11 +11479,6 @@ 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"
@@ -11901,6 +11930,11 @@ 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"
@@ -12148,11 +12182,6 @@ 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"
@@ -13028,6 +13057,11 @@ 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"
@@ -13338,11 +13372,6 @@ 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."
@@ -14166,6 +14195,11 @@ 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
@@ -14189,6 +14223,12 @@ 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"
@@ -14790,6 +14830,11 @@ 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."
@@ -15079,6 +15124,11 @@ 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."
@@ -15149,11 +15199,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13326,11 +13360,6 @@ 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."
@@ -14154,6 +14183,11 @@ 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
@@ -14177,6 +14211,12 @@ 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"
@@ -14778,6 +14818,11 @@ 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."
@@ -15067,6 +15112,11 @@ 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."
@@ -15137,11 +15187,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ msgid "Application details"
msgstr "Chi tiết ứng dụng"
#. js-lingui-id: lGEBD4
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/modules/marketplace/hooks/useInstallApp.ts
msgid "Application installed successfully."
msgstr ""
@@ -1858,6 +1854,11 @@ msgstr "Miền Đã Được Phê Duyệt"
msgid "Apps"
msgstr ""
#. js-lingui-id: KKYyo8
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Apps you've created, registered, or published"
msgstr ""
#. js-lingui-id: 8HV3WN
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
msgid "Arabic"
@@ -2520,6 +2521,7 @@ msgstr "Không thể quét? Sao chép"
#. js-lingui-id: dEgA5A
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationGeneralTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
#: src/pages/auth/Authorize.tsx
#: src/modules/ui/layout/modal/components/ConfirmationModal.tsx
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
@@ -2582,11 +2584,6 @@ msgstr "Hủy chuyển đổi kế hoạch?"
msgid "Cancel your subscription"
msgstr "Hủy đăng ký của bạn"
#. js-lingui-id: XDbjjW
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
msgid "Cannot delete the only view"
msgstr ""
#. js-lingui-id: 8fbdLj
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
#: src/modules/ui/feedback/snack-bar-manager/utils/sanitizeMessageToRenderInSnackbar.ts
@@ -2741,6 +2738,11 @@ msgstr "Chọn giữa giao thức OIDC và SAML"
msgid "Choose between Short and Full"
msgstr "Chọn giữa Ngắn và Đầy đủ"
#. js-lingui-id: +yPBXI
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Choose file"
msgstr ""
#. js-lingui-id: YcrXB2
#: src/modules/settings/data-model/fields/forms/currency/components/SettingsDataModelFieldCurrencyForm.tsx
msgid "Choose the default currency that will apply"
@@ -2945,11 +2947,6 @@ msgstr "dữ liệu cột không tương thích với Đa Lựa Chọn. Định
msgid "Columns not matched:"
msgstr "Các cột không khớp:"
#. js-lingui-id: cj9UFG
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Command copied to clipboard"
msgstr ""
#. js-lingui-id: RyZt4H
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "Command Icon"
@@ -3308,6 +3305,11 @@ msgstr "Tiếp tục với Microsoft"
msgid "Continue without sync"
msgstr "Tiếp tục mà không đồng bộ"
#. js-lingui-id: nTcGbN
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
msgid "Control visibility on the marketplace. Unlisted apps are still accessible via direct link."
msgstr ""
#. js-lingui-id: +iFqZW
#: src/modules/settings/roles/role-settings/components/SettingsRoleApplicability.tsx
msgid "Control which types of entities this role can be assigned to"
@@ -3345,11 +3347,6 @@ msgstr "Sao chép"
msgid "Copy code"
msgstr "Sao chép mã"
#. js-lingui-id: Oos8fo
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Copy command"
msgstr ""
#. js-lingui-id: Es0ros
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Copy commands"
@@ -3510,11 +3507,6 @@ msgstr "Tạo"
msgid "Create {targetObjectLabelSingular}"
msgstr "Tạo {targetObjectLabelSingular}"
#. js-lingui-id: 5XhrY3
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Create & Develop"
msgstr ""
#. js-lingui-id: 8aATyU
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
msgid "Create a dashboard"
@@ -3555,6 +3547,11 @@ msgstr "Tạo một quy trình làm việc và quay lại đây để xem các p
msgid "Create a workspace"
msgstr "Tạo không gian làm việc"
#. js-lingui-id: /WlFSf
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Create an application"
msgstr "Tạo ứng dụng"
#. js-lingui-id: 8ZjIgO
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Create and configure AI agents"
@@ -4149,6 +4146,12 @@ msgstr "Mã quốc gia mặc định"
msgid "Default palette"
msgstr "Bảng màu mặc định"
#. js-lingui-id: U/uGBk
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "Default position/visibility for fields created in the future"
msgstr ""
#. js-lingui-id: v41VX6
#: src/pages/settings/members/SettingsWorkspaceMembers.tsx
#: src/modules/workspace/components/WorkspaceInviteTeam.tsx
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ msgstr "Không thể tải lên tệp: {fileName}"
msgid "Failed to upload picture"
msgstr "Không thể tải lên ảnh"
#. js-lingui-id: vWFfVs
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Failed to upload tarball."
msgstr ""
#. js-lingui-id: K0joU5
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminHealthAccountSyncCountersTable.tsx
msgid "Failure Rate"
@@ -8052,6 +8065,11 @@ msgstr "Liệt kê các ứng dụng đã cài đặt. Sử dụng bộ lọc đ
msgid "Listed"
msgstr ""
#. js-lingui-id: vxO58F
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
msgid "Listed on marketplace"
msgstr ""
#. js-lingui-id: HhVDr2
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
msgid "Listing"
@@ -8320,6 +8338,11 @@ msgstr "Quản lý ứng dụng của bạn"
msgid "Manage your internet accounts."
msgstr "Quản lý các tài khoản internet của bạn."
#. js-lingui-id: +pSdLP
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationDistributionTab.tsx
msgid "Managed by the marketplace catalog sync for npm packages"
msgstr ""
#. js-lingui-id: BWTzAb
#: src/modules/side-panel/pages/page-layout/hooks/useGraphXSortOptionLabels.ts
#: src/modules/side-panel/pages/page-layout/hooks/useGraphGroupBySortOptionLabels.ts
@@ -8707,6 +8730,11 @@ msgstr "phải là một mảng đối tượng với URL hợp lệ và nhãn (
msgid "must be an array of valid emails"
msgstr "phải là một mảng email hợp lệ"
#. js-lingui-id: bPl77g
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "My Apps"
msgstr ""
#. js-lingui-id: XTGSZU
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
msgid "My unlisted views"
@@ -8928,6 +8956,12 @@ msgstr "Tên miền Email mới"
msgid "New Field"
msgstr "Trường mới"
#. js-lingui-id: DNUCGO
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
msgid "New fields"
msgstr ""
#. js-lingui-id: 96G6Re
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
@@ -11441,11 +11475,6 @@ msgstr "Lưu bảng điều khiển"
msgid "Save Page Layout"
msgstr ""
#. js-lingui-id: veLq3R
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Scaffold a new app, then use the CLI to develop, publish, and distribute"
msgstr ""
#. js-lingui-id: gmB6oO
#: src/modules/workflow/workflow-trigger/components/CronExpressionHelper.tsx
msgid "Schedule"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ msgstr "Đặt làm chính"
msgid "Set email visibility, manage your blocklist and more."
msgstr "Thiết lập hiển thị email, quản lý danh sách chặn và hơn thế nữa."
#. js-lingui-id: qFjlHh
#: src/modules/side-panel/pages/page-layout/components/NewFieldDefaultVisibilityToggle.tsx
msgid "Set fields created in the future as \"visible\""
msgstr ""
#. js-lingui-id: 6KA8xy
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
msgid "Set global workspace preferences"
@@ -13016,6 +13045,11 @@ msgstr "Bảng"
msgid "Tarball upload"
msgstr ""
#. js-lingui-id: yvSCl+
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Tarball uploaded but installation failed."
msgstr ""
#. js-lingui-id: sceIIK
#: src/modules/settings/data-model/fields/forms/morph-relation/components/SettingsDataModelFieldRelationJunctionForm.tsx
msgid "Target relation on Junction Object"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ msgstr "Tải lên"
msgid "Upload .xlsx, .xls or .csv file"
msgstr "Tải lên tệp .xlsx, .xls hoặc .csv"
#. js-lingui-id: BhkxTk
#: src/modules/marketplace/hooks/useUploadAppTarball.ts
msgid "Upload failed."
msgstr ""
#. js-lingui-id: 2IXDgU
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
#: src/modules/object-record/record-field/ui/meta-types/input/components/FilesFieldInput.tsx
@@ -14175,6 +14209,12 @@ msgstr "Tải lên tệp"
msgid "Upload Files"
msgstr "Tải lên tệp"
#. js-lingui-id: aG3MkW
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
#: src/pages/settings/applications/components/SettingsUploadTarballModal.tsx
msgid "Upload tarball"
msgstr ""
#. js-lingui-id: akDOEO
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
msgid "Upload the XML file with your connection infos"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ msgstr "Bạn đã thuộc vào workspace này"
msgid "You are not allowed to create records for this object"
msgstr "Bạn không được phép tạo bản ghi cho đối tượng này"
#. js-lingui-id: iibZbD
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "You can either create a private app or share it to others"
msgstr "Bạn có thể tạo một ứng dụng riêng tư hoặc chia sẻ với người khác"
#. js-lingui-id: CNAoaw
#: src/modules/workflow/workflow-steps/workflow-actions/logic-function-action/components/WorkflowEditActionLogicFunction.tsx
msgid "You can see the function logic in your application settings."
@@ -15135,11 +15185,6 @@ msgstr "Tài khoản của bạn đã được kích hoạt."
msgid "Your app version is out of date. Please refresh the page."
msgstr "Phiên bản ứng dụng của bạn đã lỗi thời. Vui lòng làm mới trang."
#. js-lingui-id: oNUh7z
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Your Apps"
msgstr ""
#. js-lingui-id: +5YqGH
#: src/modules/onboarding/constants/OnboardingSyncEmailsOptions.ts
msgid "Your email subjects and meeting titles will be shared with your team."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ msgstr "列数据与多选不兼容。需要的格式为“[\"选项1\", \"选
msgid "Columns not matched:"
msgstr "未匹配的列:"
#. js-lingui-id: cj9UFG
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
msgid "Command copied to clipboard"
msgstr ""
#. js-lingui-id: RyZt4H
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerManual.tsx
msgid "Command Icon"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
+90 -45
View File
@@ -1355,11 +1355,6 @@ 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"
@@ -1799,6 +1794,7 @@ 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 ""
@@ -1858,6 +1854,11 @@ 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"
@@ -2520,6 +2521,7 @@ 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
@@ -2582,11 +2584,6 @@ 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
@@ -2741,6 +2738,11 @@ 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"
@@ -2945,11 +2947,6 @@ 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"
@@ -3308,6 +3305,11 @@ 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"
@@ -3345,11 +3347,6 @@ 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"
@@ -3510,11 +3507,6 @@ 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"
@@ -3555,6 +3547,11 @@ 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"
@@ -4149,6 +4146,12 @@ 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
@@ -5560,6 +5563,11 @@ 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"
@@ -6185,6 +6193,11 @@ 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"
@@ -8052,6 +8065,11 @@ 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"
@@ -8320,6 +8338,11 @@ 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
@@ -8707,6 +8730,11 @@ 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"
@@ -8928,6 +8956,12 @@ 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
@@ -11441,11 +11475,6 @@ 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"
@@ -11897,6 +11926,11 @@ 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"
@@ -12144,11 +12178,6 @@ 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"
@@ -13016,6 +13045,11 @@ 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"
@@ -13324,11 +13358,6 @@ 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."
@@ -14152,6 +14181,11 @@ 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
@@ -14175,6 +14209,12 @@ 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"
@@ -14776,6 +14816,11 @@ 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."
@@ -15065,6 +15110,11 @@ 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."
@@ -15135,11 +15185,6 @@ 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."
@@ -157,12 +157,10 @@ export const CalendarEventDetails = ({
const renderField = (fieldMetadataItem: FieldMetadataItem) => {
const isReadOnly = isRecordFieldReadOnly({
isRecordReadOnly,
isSystemObject: objectMetadataItem.isSystem,
objectPermissions,
fieldMetadataItem: {
id: fieldMetadataItem.id,
isUIReadOnly: fieldMetadataItem.isUIReadOnly ?? false,
isCustom: fieldMetadataItem.isCustom ?? false,
},
});
@@ -1,39 +1,35 @@
import { downloadFile } from '@/activities/files/utils/downloadFile';
import { saveAs } from 'file-saver';
jest.mock('file-saver', () => ({
saveAs: jest.fn(),
}));
const mockBlob = new Blob(['test content'], { type: 'application/pdf' });
global.fetch = jest.fn(() =>
Promise.resolve({
status: 200,
blob: () => Promise.resolve(mockBlob),
blob: jest.fn(),
} as unknown as Response),
);
describe('downloadFile', () => {
afterEach(() => {
jest.clearAllMocks();
});
window.URL.createObjectURL = jest.fn(() => 'mock-url');
window.URL.revokeObjectURL = jest.fn();
it('should download a file', async () => {
await downloadFile('url/to/file.pdf', 'file.pdf');
// FIXME: jest is behaving weirdly here, it's not finding the element
// Also the document's innerHTML is empty
// `global.fetch` and `window.fetch` are also undefined
describe.skip('downloadFile', () => {
it('should download a file', () => {
downloadFile('url/to/file.pdf', 'file.pdf');
expect(fetch).toHaveBeenCalledWith('url/to/file.pdf');
expect(saveAs).toHaveBeenCalledWith(mockBlob, 'file.pdf');
});
it('should reject when fetch fails', async () => {
(global.fetch as jest.Mock).mockResolvedValueOnce({
status: 404,
blob: () => Promise.resolve(mockBlob),
});
await expect(downloadFile('url/to/file.pdf', 'file.pdf')).rejects.toBe(
'Failed downloading file',
const link = document.querySelector(
'a[href="mock-url"][download="file.pdf"]',
);
expect(link).not.toBeNull();
// oxlint-disable-next-line @typescripttypescript/ban-ts-comment
// @ts-ignore
expect(link?.style?.display).toBe('none');
expect(link).toHaveBeenCalledTimes(1);
jest.clearAllMocks();
});
});
@@ -1,7 +1,7 @@
import { saveAs } from 'file-saver';
export const downloadFile = (fullPath: string, fileName: string) => {
return fetch(fullPath)
fetch(fullPath)
.then((resp) =>
resp.status === 200
? resp.blob()
@@ -1,17 +1,9 @@
import { PageContainer } from '@/ui/layout/page/components/PageContainer';
import { type ReactNode, Suspense } from 'react';
import { PageContentSkeletonLoader } from '~/loading/components/PageContentSkeletonLoader';
type LazyRouteProps = {
children: ReactNode;
};
const LazyRouteFallback = () => (
<PageContainer>
<PageContentSkeletonLoader />
</PageContainer>
);
export const LazyRoute = ({ children }: LazyRouteProps) => (
<Suspense fallback={<LazyRouteFallback />}>{children}</Suspense>
<Suspense fallback={<></>}>{children}</Suspense>
);
@@ -1,9 +1,13 @@
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
import { CommandMenuContextProviderLegacy } from '@/command-menu-item/contexts/CommandMenuContextProviderLegacy';
import { CommandMenuContextProviderServerItems } from '@/command-menu-item/server-items/contexts/CommandMenuContextProviderServerItems';
import { CommandMenuContextProviderDefault } from '@/command-menu-item/contexts/CommandMenuContextProviderDefault';
import { CommandMenuContextProviderWorkflowObjects } from '@/command-menu-item/contexts/CommandMenuContextProviderWorkflowObjects';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { isDefined } from 'twenty-shared/utils';
export const CommandMenuContextProvider = ({
children,
@@ -15,30 +19,51 @@ export const CommandMenuContextProvider = ({
children: React.ReactNode;
objectMetadataItemOverride?: ObjectMetadataItem;
}) => {
const isCommandMenuItemEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
const contextStoreCurrentObjectMetadataItemId = useAtomComponentStateValue(
contextStoreCurrentObjectMetadataItemIdComponentState,
);
if (isCommandMenuItemEnabled) {
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
const objectMetadataItem =
objectMetadataItemOverride ??
objectMetadataItems.find(
(objectMetadataItem) =>
objectMetadataItem.id === contextStoreCurrentObjectMetadataItemId,
);
if (!isDefined(objectMetadataItem)) {
return null;
}
const isWorkflowObject =
objectMetadataItem?.nameSingular === CoreObjectNameSingular.Workflow;
if (!isDefined(objectMetadataItem)) {
return null;
}
if (isWorkflowObject) {
return (
<CommandMenuContextProviderServerItems
<CommandMenuContextProviderWorkflowObjects
isInSidePanel={isInSidePanel}
displayType={displayType}
containerType={containerType}
objectMetadataItem={objectMetadataItem}
>
{children}
</CommandMenuContextProviderServerItems>
</CommandMenuContextProviderWorkflowObjects>
);
}
return (
<CommandMenuContextProviderLegacy
<CommandMenuContextProviderDefault
isInSidePanel={isInSidePanel}
displayType={displayType}
containerType={containerType}
objectMetadataItemOverride={objectMetadataItemOverride}
objectMetadataItem={objectMetadataItem}
>
{children}
</CommandMenuContextProviderLegacy>
</CommandMenuContextProviderDefault>
);
};
@@ -2,6 +2,8 @@ import {
CommandMenuContext,
type CommandMenuContextType,
} from '@/command-menu-item/contexts/CommandMenuContext';
import { useCommandMenuContextApi } from '@/command-menu-item/hooks/useCommandMenuContextApi';
import { useCommandMenuItemFrontComponentCommands } from '@/command-menu-item/hooks/useCommandMenuItemFrontComponentCommands';
import { useRegisteredCommandMenuItems } from '@/command-menu-item/hooks/useRegisteredCommandMenuItems';
import { useShouldCommandMenuItemBeRegisteredParams } from '@/command-menu-item/hooks/useShouldCommandMenuItemBeRegisteredParams';
import { useRunWorkflowRecordAgnosticCommands } from '@/command-menu-item/record-agnostic/workflow/hooks/useRunWorkflowRecordAgnosticCommands';
@@ -9,6 +11,8 @@ import { useRunWorkflowRecordCommands } from '@/command-menu-item/record/workflo
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
export const CommandMenuContextProviderDefault = ({
objectMetadataItem,
@@ -23,10 +27,14 @@ export const CommandMenuContextProviderDefault = ({
containerType: CommandMenuContextType['containerType'];
children: React.ReactNode;
}) => {
const shouldBeRegisteredParams = useShouldCommandMenuItemBeRegisteredParams({
const params = useShouldCommandMenuItemBeRegisteredParams({
objectMetadataItem,
});
const shouldBeRegisteredParams = {
...params,
};
const commandMenuItems = useRegisteredCommandMenuItems(
shouldBeRegisteredParams,
);
@@ -47,17 +55,28 @@ export const CommandMenuContextProviderDefault = ({
const runWorkflowRecordAgnosticCommands =
useRunWorkflowRecordAgnosticCommands();
const commandMenuContextApi = useCommandMenuContextApi();
const commandMenuItemFrontComponentActions =
useCommandMenuItemFrontComponentCommands(commandMenuContextApi);
const isCommandMenuItemEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
);
return (
<CommandMenuContext.Provider
value={{
isInSidePanel,
displayType,
containerType,
commandMenuItems: [
...commandMenuItems,
...runWorkflowRecordCommands,
...runWorkflowRecordAgnosticCommands,
],
commandMenuItems: isCommandMenuItemEnabled
? commandMenuItemFrontComponentActions
: [
...commandMenuItems,
...runWorkflowRecordCommands,
...runWorkflowRecordAgnosticCommands,
],
}}
>
{children}
@@ -1,65 +0,0 @@
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
import { CommandMenuContextProviderDefault } from '@/command-menu-item/contexts/CommandMenuContextProviderDefault';
import { CommandMenuContextProviderWorkflowObjects } from '@/command-menu-item/contexts/CommandMenuContextProviderWorkflowObjects';
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadataItemsState';
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { isDefined } from 'twenty-shared/utils';
export const CommandMenuContextProviderLegacy = ({
children,
isInSidePanel,
displayType,
containerType,
objectMetadataItemOverride,
}: Omit<CommandMenuContextType, 'commandMenuItems'> & {
children: React.ReactNode;
objectMetadataItemOverride?: ObjectMetadataItem;
}) => {
const contextStoreCurrentObjectMetadataItemId = useAtomComponentStateValue(
contextStoreCurrentObjectMetadataItemIdComponentState,
);
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
const objectMetadataItem =
objectMetadataItemOverride ??
objectMetadataItems.find(
(objectMetadataItem) =>
objectMetadataItem.id === contextStoreCurrentObjectMetadataItemId,
);
if (!isDefined(objectMetadataItem)) {
return null;
}
const isWorkflowObject =
objectMetadataItem.nameSingular === CoreObjectNameSingular.Workflow;
if (isWorkflowObject) {
return (
<CommandMenuContextProviderWorkflowObjects
isInSidePanel={isInSidePanel}
displayType={displayType}
containerType={containerType}
objectMetadataItem={objectMetadataItem}
>
{children}
</CommandMenuContextProviderWorkflowObjects>
);
}
return (
<CommandMenuContextProviderDefault
isInSidePanel={isInSidePanel}
displayType={displayType}
containerType={containerType}
objectMetadataItem={objectMetadataItem}
>
{children}
</CommandMenuContextProviderDefault>
);
};
@@ -2,6 +2,8 @@ import {
CommandMenuContext,
type CommandMenuContextType,
} from '@/command-menu-item/contexts/CommandMenuContext';
import { useCommandMenuContextApi } from '@/command-menu-item/hooks/useCommandMenuContextApi';
import { useCommandMenuItemFrontComponentCommands } from '@/command-menu-item/hooks/useCommandMenuItemFrontComponentCommands';
import { useRegisteredCommandMenuItems } from '@/command-menu-item/hooks/useRegisteredCommandMenuItems';
import { useShouldCommandMenuItemBeRegisteredParams } from '@/command-menu-item/hooks/useShouldCommandMenuItemBeRegisteredParams';
import { useRunWorkflowRecordAgnosticCommands } from '@/command-menu-item/record-agnostic/workflow/hooks/useRunWorkflowRecordAgnosticCommands';
@@ -12,7 +14,9 @@ import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/use
import { useAtomFamilyStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomFamilyStateValue';
import { useWorkflowWithCurrentVersion } from '@/workflow/hooks/useWorkflowWithCurrentVersion';
import { type WorkflowWithCurrentVersion } from '@/workflow/types/Workflow';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { isDefined } from 'twenty-shared/utils';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
type CommandMenuContextProviderWorkflowObjectsProps = {
objectMetadataItem: ObjectMetadataItem;
@@ -51,16 +55,42 @@ const CommandMenuContextProviderWorkflowObjectsContent = ({
const runWorkflowRecordAgnosticCommands =
useRunWorkflowRecordAgnosticCommands();
const commandMenuContextApi = useCommandMenuContextApi();
const enrichedSelectedRecords = isDefined(workflowWithCurrentVersion)
? commandMenuContextApi.selectedRecords.map((record) =>
record.id === workflowWithCurrentVersion.id
? {
...record,
currentVersion: workflowWithCurrentVersion.currentVersion,
versions: workflowWithCurrentVersion.versions,
statuses: workflowWithCurrentVersion.statuses,
}
: record,
)
: commandMenuContextApi.selectedRecords;
const enrichedCommandMenuContextApi = {
...commandMenuContextApi,
selectedRecords: enrichedSelectedRecords,
};
const commandMenuItemFrontComponentActions =
useCommandMenuItemFrontComponentCommands(enrichedCommandMenuContextApi);
const isCommandMenuItemEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
);
return (
<CommandMenuContext.Provider
value={{
isInSidePanel,
displayType,
containerType,
commandMenuItems: [
...commandMenuItems,
...runWorkflowRecordAgnosticCommands,
],
commandMenuItems: isCommandMenuItemEnabled
? commandMenuItemFrontComponentActions
: [...commandMenuItems, ...runWorkflowRecordAgnosticCommands],
}}
>
{children}
@@ -93,16 +123,24 @@ const CommandMenuContextProviderWorkflowObjectsWithoutWorkflow = ({
const runWorkflowRecordAgnosticCommands =
useRunWorkflowRecordAgnosticCommands();
const commandMenuContextApi = useCommandMenuContextApi();
const commandMenuItemFrontComponentActions =
useCommandMenuItemFrontComponentCommands(commandMenuContextApi);
const isCommandMenuItemEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
);
return (
<CommandMenuContext.Provider
value={{
isInSidePanel,
displayType,
containerType,
commandMenuItems: [
...commandMenuItems,
...runWorkflowRecordAgnosticCommands,
],
commandMenuItems: isCommandMenuItemEnabled
? commandMenuItemFrontComponentActions
: [...commandMenuItems, ...runWorkflowRecordAgnosticCommands],
}}
>
{children}
@@ -10,6 +10,7 @@ import { objectMetadataItemsState } from '@/object-metadata/states/objectMetadat
import { useOpenFrontComponentInSidePanel } from '@/side-panel/hooks/useOpenFrontComponentInSidePanel';
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { type CommandMenuContextApi } from 'twenty-shared/types';
import {
evaluateConditionalAvailabilityExpression,
@@ -22,6 +23,7 @@ import { COMMAND_MENU_DEFAULT_ICON } from '@/workflow/workflow-trigger/constants
import {
CommandMenuItemAvailabilityType,
type CommandMenuItemFieldsFragment,
FeatureFlagKey,
useFindManyCommandMenuItemsQuery,
} from '~/generated-metadata/graphql';
@@ -157,7 +159,13 @@ export const useCommandMenuItemFrontComponentCommands = (
}
: undefined;
const { data } = useFindManyCommandMenuItemsQuery();
const isCommandMenuItemEnabled = useIsFeatureEnabled(
FeatureFlagKey.IS_COMMAND_MENU_ITEM_ENABLED,
);
const { data } = useFindManyCommandMenuItemsQuery({
skip: !isCommandMenuItemEnabled,
});
const frontComponentItems =
data?.commandMenuItems?.filter(
@@ -116,13 +116,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
position: 2,
isPinned: true,
Icon: IconPlus,
shouldBeRegistered: ({
objectMetadataItem,
objectPermissions,
hasAnySoftDeleteFilterOnView,
}) =>
(!objectMetadataItem?.isSystem &&
objectPermissions.canUpdateObjectRecords &&
shouldBeRegistered: ({ objectPermissions, hasAnySoftDeleteFilterOnView }) =>
(objectPermissions.canUpdateObjectRecords &&
!hasAnySoftDeleteFilterOnView) ??
false,
availableOn: [CommandMenuItemViewType.INDEX_PAGE_NO_SELECTION],
@@ -445,10 +440,8 @@ export const DEFAULT_RECORD_COMMAND_MENU_ITEMS_CONFIG: Record<
Icon: IconFileImport,
accent: 'default',
isPinned: false,
shouldBeRegistered: ({
objectMetadataItem,
hasAnySoftDeleteFilterOnView,
}) => !objectMetadataItem?.isSystem && !hasAnySoftDeleteFilterOnView,
shouldBeRegistered: ({ hasAnySoftDeleteFilterOnView }) =>
!hasAnySoftDeleteFilterOnView,
availableOn: [CommandMenuItemViewType.INDEX_PAGE_NO_SELECTION],
component: <ImportRecordsNoSelectionRecordCommand />,
requiredPermissionFlag: PermissionFlagType.IMPORT_CSV,
@@ -1,61 +0,0 @@
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { useCommandMenuContextApi } from '@/command-menu-item/server-items/hooks/useCommandMenuContextApi';
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
import { CommandMenuContextProviderServerItemsContent } from './CommandMenuContextProviderServerItemsContent';
import { CommandMenuContextProviderServerItemsWithWorkflowEnrichment } from './CommandMenuContextProviderServerItemsWithWorkflowEnrichment';
type CommandMenuContextProviderServerItemsProps = {
isInSidePanel: CommandMenuContextType['isInSidePanel'];
displayType: CommandMenuContextType['displayType'];
containerType: CommandMenuContextType['containerType'];
children: React.ReactNode;
};
export const CommandMenuContextProviderServerItems = ({
isInSidePanel,
displayType,
containerType,
children,
}: CommandMenuContextProviderServerItemsProps) => {
const commandMenuContextApi = useCommandMenuContextApi();
const currentObjectNameSingular =
commandMenuContextApi.objectMetadataItem.nameSingular;
const isWorkflow =
currentObjectNameSingular === CoreObjectNameSingular.Workflow;
const selectedWorkflowRecordIds = isWorkflow
? commandMenuContextApi.selectedRecords
.map((record) => record.id)
.filter(isDefined)
: [];
if (selectedWorkflowRecordIds.length > 0) {
return (
<CommandMenuContextProviderServerItemsWithWorkflowEnrichment
isInSidePanel={isInSidePanel}
displayType={displayType}
containerType={containerType}
commandMenuContextApi={commandMenuContextApi}
selectedWorkflowRecordIds={selectedWorkflowRecordIds}
>
{children}
</CommandMenuContextProviderServerItemsWithWorkflowEnrichment>
);
}
return (
<CommandMenuContextProviderServerItemsContent
isInSidePanel={isInSidePanel}
displayType={displayType}
containerType={containerType}
commandMenuContextApi={commandMenuContextApi}
>
{children}
</CommandMenuContextProviderServerItemsContent>
);
};
@@ -1,39 +0,0 @@
import {
CommandMenuContext,
type CommandMenuContextType,
} from '@/command-menu-item/contexts/CommandMenuContext';
import { useCommandMenuItemFrontComponentCommands } from '@/command-menu-item/server-items/hooks/useCommandMenuItemFrontComponentCommands';
import { type CommandMenuContextApi } from 'twenty-shared/types';
type CommandMenuContextProviderServerItemsContentProps = {
isInSidePanel: CommandMenuContextType['isInSidePanel'];
displayType: CommandMenuContextType['displayType'];
containerType: CommandMenuContextType['containerType'];
children: React.ReactNode;
};
export const CommandMenuContextProviderServerItemsContent = ({
isInSidePanel,
displayType,
containerType,
children,
commandMenuContextApi,
}: CommandMenuContextProviderServerItemsContentProps & {
commandMenuContextApi: CommandMenuContextApi;
}) => {
const commandMenuItemFrontComponentActions =
useCommandMenuItemFrontComponentCommands(commandMenuContextApi);
return (
<CommandMenuContext.Provider
value={{
isInSidePanel,
displayType,
containerType,
commandMenuItems: commandMenuItemFrontComponentActions,
}}
>
{children}
</CommandMenuContext.Provider>
);
};
@@ -1,65 +0,0 @@
import { type CommandMenuContextApi } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
import { useWorkflowsWithCurrentVersions } from '@/command-menu-item/server-items/hooks/useWorkflowsWithCurrentVersions';
import { CommandMenuContextProviderServerItemsContent } from './CommandMenuContextProviderServerItemsContent';
type CommandMenuContextProviderServerItemsWithWorkflowEnrichmentProps = {
isInSidePanel: CommandMenuContextType['isInSidePanel'];
displayType: CommandMenuContextType['displayType'];
containerType: CommandMenuContextType['containerType'];
children: React.ReactNode;
};
export const CommandMenuContextProviderServerItemsWithWorkflowEnrichment = ({
isInSidePanel,
displayType,
containerType,
children,
commandMenuContextApi,
selectedWorkflowRecordIds,
}: CommandMenuContextProviderServerItemsWithWorkflowEnrichmentProps & {
commandMenuContextApi: CommandMenuContextApi;
selectedWorkflowRecordIds: string[];
}) => {
const workflowsWithCurrentVersions = useWorkflowsWithCurrentVersions(
selectedWorkflowRecordIds,
);
const enrichedSelectedRecords = commandMenuContextApi.selectedRecords.map(
(record) => {
const workflowWithCurrentVersion = workflowsWithCurrentVersions.find(
(workflow) => workflow.id === record.id,
);
if (!isDefined(workflowWithCurrentVersion)) {
return record;
}
return {
...record,
currentVersion: workflowWithCurrentVersion.currentVersion,
versions: workflowWithCurrentVersion.versions,
statuses: workflowWithCurrentVersion.statuses,
};
},
);
const enrichedCommandMenuContextApi = {
...commandMenuContextApi,
selectedRecords: enrichedSelectedRecords,
};
return (
<CommandMenuContextProviderServerItemsContent
isInSidePanel={isInSidePanel}
displayType={displayType}
containerType={containerType}
commandMenuContextApi={enrichedCommandMenuContextApi}
>
{children}
</CommandMenuContextProviderServerItemsContent>
);
};
@@ -1,73 +0,0 @@
import { CoreObjectNameSingular } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { useFindManyRecords } from '@/object-record/hooks/useFindManyRecords';
import {
type Workflow,
type WorkflowVersion,
type WorkflowWithCurrentVersion,
} from '@/workflow/types/Workflow';
const getCurrentVersionId = (workflow: Workflow): string | undefined => {
const draftVersion = workflow.versions.find(
(version) => version.status === 'DRAFT',
);
const sortedVersions = workflow.versions.toSorted((a, b) =>
a.createdAt > b.createdAt ? -1 : 1,
);
const latestVersion = sortedVersions[0];
return (draftVersion ?? latestVersion)?.id;
};
export const useWorkflowsWithCurrentVersions = (
workflowIds: string[],
): WorkflowWithCurrentVersion[] => {
const { records: workflows } = useFindManyRecords<Workflow>({
objectNameSingular: CoreObjectNameSingular.Workflow,
filter: { id: { in: workflowIds } },
recordGqlFields: {
id: true,
name: true,
statuses: true,
lastPublishedVersionId: true,
versions: {
id: true,
status: true,
name: true,
createdAt: true,
},
},
skip: workflowIds.length === 0,
});
const currentVersionIds = workflows
.map(getCurrentVersionId)
.filter(isDefined);
const { records: currentVersions } = useFindManyRecords<WorkflowVersion>({
objectNameSingular: CoreObjectNameSingular.WorkflowVersion,
filter: { id: { in: currentVersionIds } },
skip: currentVersionIds.length === 0,
});
return workflows
.map((workflow) => {
const currentVersionId = getCurrentVersionId(workflow);
const currentVersion = currentVersions.find(
(version) => version.id === currentVersionId,
);
if (!isDefined(currentVersion)) {
return undefined;
}
return {
...workflow,
currentVersion,
};
})
.filter(isDefined);
};
@@ -10,14 +10,13 @@ import { coreViewsState } from '@/views/states/coreViewState';
import { useLocation, useParams, useSearchParams } from 'react-router-dom';
import { AppPath } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
import { ViewKey, ViewType } from '~/generated-metadata/graphql';
import { ViewKey } from '~/generated-metadata/graphql';
import { isMatchingLocation } from '~/utils/isMatchingLocation';
const getViewId = (
viewIdFromQueryParams: string | null,
indexViewId?: string,
lastVisitedViewId?: string,
firstAvailableViewId?: string,
) => {
if (isDefined(viewIdFromQueryParams)) {
return viewIdFromQueryParams;
@@ -31,10 +30,6 @@ const getViewId = (
return indexViewId;
}
if (isDefined(firstAvailableViewId)) {
return firstAvailableViewId;
}
return undefined;
};
@@ -51,7 +46,7 @@ export const MainContextStoreProvider = () => {
const objectNameSingular = useParams().objectNameSingular ?? '';
const [searchParams] = useSearchParams();
const viewIdQueryParamRaw = searchParams.get('viewId');
const viewIdQueryParam = searchParams.get('viewId');
const objectMetadataItems = useAtomStateValue(objectMetadataItemsState);
const metadataStore = useAtomFamilyStateValue(metadataStoreState, 'views');
@@ -65,49 +60,17 @@ export const MainContextStoreProvider = () => {
const { getLastVisitedViewIdFromObjectNamePlural } = useLastVisitedView();
const viewIdQueryParamView = coreViews.find(
(view) => view.id === viewIdQueryParamRaw,
);
const viewIdQueryParam =
isDefined(viewIdQueryParamView) &&
viewIdQueryParamView.type !== ViewType.FIELDS_WIDGET
? viewIdQueryParamRaw
: null;
const lastVisitedViewIdRaw = getLastVisitedViewIdFromObjectNamePlural(
const lastVisitedViewId = getLastVisitedViewIdFromObjectNamePlural(
objectMetadataItem?.namePlural ?? '',
);
const lastVisitedView = coreViews.find(
(view) => view.id === lastVisitedViewIdRaw,
);
const lastVisitedViewId =
isDefined(lastVisitedView) &&
lastVisitedView.type !== ViewType.FIELDS_WIDGET
? lastVisitedViewIdRaw
: undefined;
const indexViewId = coreViews.find(
(view) =>
view.objectMetadataId === objectMetadataItem?.id &&
view.key === ViewKey.INDEX,
)?.id;
const firstAvailableViewId = coreViews.find(
(view) =>
view.objectMetadataId === objectMetadataItem?.id &&
view.type !== ViewType.FIELDS_WIDGET,
)?.id;
const viewId = getViewId(
viewIdQueryParam,
indexViewId,
lastVisitedViewId,
firstAvailableViewId,
);
const viewId = getViewId(viewIdQueryParam, indexViewId, lastVisitedViewId);
const showAuthModal = useShowAuthModal();
const shouldComputeContextStore =
@@ -0,0 +1,7 @@
import gql from 'graphql-tag';
export const INSTALL_APPLICATION = gql`
mutation InstallApplication($appRegistrationId: String!, $version: String) {
installApplication(appRegistrationId: $appRegistrationId, version: $version)
}
`;
@@ -0,0 +1,11 @@
import { gql } from '@apollo/client';
export const UPLOAD_APP_TARBALL = gql`
mutation UploadAppTarball($file: Upload!, $universalIdentifier: String) {
uploadAppTarball(file: $file, universalIdentifier: $universalIdentifier) {
id
universalIdentifier
name
}
}
`;
@@ -0,0 +1,61 @@
import { useSnackBar } from '@/ui/feedback/snack-bar-manager/hooks/useSnackBar';
import { useMutation } from '@apollo/client';
import { t } from '@lingui/core/macro';
import { useState } from 'react';
import { isDefined } from 'twenty-shared/utils';
import { UPLOAD_APP_TARBALL } from '~/modules/marketplace/graphql/mutations/uploadAppTarball';
type UploadResult =
| {
success: true;
registrationId: string;
universalIdentifier: string;
}
| {
success: false;
};
export const useUploadAppTarball = () => {
const [uploadAppTarball] = useMutation(UPLOAD_APP_TARBALL);
const { enqueueErrorSnackBar } = useSnackBar();
const [isUploading, setIsUploading] = useState(false);
const upload = async (file: File): Promise<UploadResult> => {
setIsUploading(true);
try {
const result = await uploadAppTarball({
variables: { file },
});
const registration = result.data?.uploadAppTarball;
if (
!isDefined(registration?.id) ||
!isDefined(registration?.universalIdentifier)
) {
enqueueErrorSnackBar({ message: t`Upload failed.` });
return { success: false };
}
return {
success: true,
registrationId: registration.id,
universalIdentifier: registration.universalIdentifier,
};
} catch (error) {
const graphqlMessage = error instanceof Error ? error.message : undefined;
enqueueErrorSnackBar({
message: graphqlMessage ?? t`Failed to upload tarball.`,
});
return { success: false };
} finally {
setIsUploading(false);
}
};
return { upload, isUploading };
};
@@ -1,7 +1,5 @@
import { styled } from '@linaria/react';
import { useLingui } from '@lingui/react/macro';
import { isNonEmptyString } from '@sniptt/guards';
import { useNavigate } from 'react-router-dom';
import {
IconColumnInsertRight,
IconLink,
@@ -13,10 +11,10 @@ import { LightIconButton } from 'twenty-ui/input';
import { themeCssVariables } from 'twenty-ui/theme-constants';
import { FeatureFlagKey } from '~/generated-metadata/graphql';
import { useNavigateSidePanel } from '@/side-panel/hooks/useNavigateSidePanel';
import { FOLDER_ICON_DEFAULT } from '@/navigation-menu-item/constants/FolderIconDefault';
import { NavigationMenuItemType } from '@/navigation-menu-item/constants/NavigationMenuItemType';
import { useOpenNavigationMenuItemInSidePanel } from '@/navigation-menu-item/hooks/useOpenNavigationMenuItemInSidePanel';
import { useSortedNavigationMenuItems } from '@/navigation-menu-item/hooks/useSortedNavigationMenuItems';
import {
type NavigationMenuItemClickParams,
useWorkspaceSectionItems,
@@ -32,13 +30,13 @@ import { NavigationDrawerSectionForWorkspaceItems } from '@/object-metadata/comp
import { type ObjectMetadataItem } from '@/object-metadata/types/ObjectMetadataItem';
import { useIsPrefetchLoading } from '@/prefetch/hooks/useIsPrefetchLoading';
import { prefetchNavigationMenuItemsState } from '@/prefetch/states/prefetchNavigationMenuItemsState';
import { useNavigateSidePanel } from '@/side-panel/hooks/useNavigateSidePanel';
import { useAtomState } from '@/ui/utilities/state/jotai/hooks/useAtomState';
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
import { useSetAtomState } from '@/ui/utilities/state/jotai/hooks/useSetAtomState';
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
import { useStore } from 'jotai';
import { SidePanelPages } from 'twenty-shared/types';
import { isDefined } from 'twenty-shared/utils';
const StyledRightIconsContainer = styled.div`
align-items: center;
@@ -48,7 +46,6 @@ const StyledRightIconsContainer = styled.div`
export const WorkspaceNavigationMenuItems = () => {
const items = useWorkspaceSectionItems();
const { workspaceNavigationMenuItemsSorted } = useSortedNavigationMenuItems();
const store = useStore();
const enterEditMode = () => {
const prefetchNavigationMenuItems = store.get(
@@ -73,7 +70,6 @@ export const WorkspaceNavigationMenuItems = () => {
const setOpenNavigationMenuItemFolderIds = useSetAtomState(
openNavigationMenuItemFolderIdsState,
);
const navigate = useNavigate();
const { navigateSidePanel } = useNavigateSidePanel();
const { openNavigationMenuItemInSidePanel } =
useOpenNavigationMenuItemInSidePanel();
@@ -87,65 +83,36 @@ export const WorkspaceNavigationMenuItems = () => {
enterEditMode();
};
const openFolderAndNavigateToFirstChild = (
folderId: string,
item: NavigationMenuItemClickParams['item'],
) => {
setOpenNavigationMenuItemFolderIds((current) =>
current.includes(folderId) ? current : [...current, folderId],
);
openNavigationMenuItemInSidePanel({
pageTitle: t`Edit folder`,
pageIcon: getIcon(item.icon ?? item.Icon ?? FOLDER_ICON_DEFAULT),
});
const firstChild = workspaceNavigationMenuItemsSorted.find(
(navItem) =>
navItem.folderId === folderId &&
navItem.itemType !== NavigationMenuItemType.LINK &&
isNonEmptyString(navItem.link),
);
if (firstChild?.link) {
navigate(firstChild.link);
}
};
const openViewOrRecordEditPanelAndNavigate = (
item: NavigationMenuItemClickParams['item'],
objectMetadataItem: ObjectMetadataItem | null | undefined,
) => {
if (objectMetadataItem) {
openNavigationMenuItemInSidePanel({
pageTitle:
item.itemType === NavigationMenuItemType.VIEW
? item.labelIdentifier
: objectMetadataItem.labelSingular,
pageIcon: getIcon(objectMetadataItem.icon),
});
}
const link = 'link' in item ? item.link : undefined;
if (isNonEmptyString(link)) {
navigate(link);
}
};
const handleNavigationMenuItemClick = (
params: NavigationMenuItemClickParams,
) => {
const { item, objectMetadataItem } = params;
setSelectedNavigationMenuItemInEditMode(item.id);
switch (item.itemType) {
case NavigationMenuItemType.FOLDER:
openFolderAndNavigateToFirstChild(item.id, item);
break;
case NavigationMenuItemType.LINK:
openNavigationMenuItemInSidePanel({
pageTitle: t`Edit link`,
pageIcon: IconLink,
});
break;
default:
openViewOrRecordEditPanelAndNavigate(item, objectMetadataItem);
const id = item.id;
setSelectedNavigationMenuItemInEditMode(id);
if (item.itemType === NavigationMenuItemType.FOLDER) {
setOpenNavigationMenuItemFolderIds((currentOpenFolders) =>
currentOpenFolders.includes(id)
? currentOpenFolders
: [...currentOpenFolders, id],
);
openNavigationMenuItemInSidePanel({
pageTitle: t`Edit folder`,
pageIcon: getIcon(item.icon ?? item.Icon ?? FOLDER_ICON_DEFAULT),
});
} else if (item.itemType === NavigationMenuItemType.LINK) {
openNavigationMenuItemInSidePanel({
pageTitle: t`Edit link`,
pageIcon: IconLink,
});
} else if (isDefined(objectMetadataItem)) {
const pageTitle =
item.itemType === NavigationMenuItemType.VIEW
? item.labelIdentifier
: objectMetadataItem.labelSingular;
openNavigationMenuItemInSidePanel({
pageTitle,
pageIcon: getIcon(objectMetadataItem.icon),
});
}
};

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