Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8fb086e880 | ||
|
|
267d8ca3b0 |
+1
-1
@@ -1,5 +1,5 @@
|
||||
.git
|
||||
.env
|
||||
**/node_modules
|
||||
node_modules
|
||||
.nx/cache
|
||||
packages/twenty-server/.env
|
||||
|
||||
@@ -100,7 +100,7 @@ jobs:
|
||||
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" --skip-local-instance
|
||||
create-twenty-app test-app --exhaustive --display-name "Test App" --description "E2E test app"
|
||||
|
||||
- name: Install scaffolded app dependencies
|
||||
run: |
|
||||
@@ -151,24 +151,22 @@ jobs:
|
||||
SEED_API_KEY: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ1c2VySWQiOiIyMDIwMjAyMC1lNmI1LTQ2ODAtOGEzMi1iODIwOTczNzE1NmIiLCJ3b3Jrc3BhY2VJZCI6IjIwMjAyMDIwLTFjMjUtNGQwMi1iZjI1LTZhZWNjZjdlYTQxOSIsIndvcmtzcGFjZU1lbWJlcklkIjoiMjAyMDIwMjAtNDYzZi00MzViLTgyOGMtMTA3ZTAwN2EyNzExIiwidXNlcldvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWU3Yy00M2Q5LWE1ZGItNjg1YjUwNjlkODE2IiwidHlwZSI6IkFDQ0VTUyIsImF1dGhQcm92aWRlciI6InBhc3N3b3JkIiwiaWF0IjoxNzUxMjgxNzA0LCJleHAiOjIwNjY4NTc3MDR9.HMGqCsVlOAPVUBhKSGlD1X86VoHKt4LIUtET3CGIdik'
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
npx --no-install twenty remote add --token $SEED_API_KEY --url http://localhost:3000
|
||||
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 build
|
||||
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 exec --functionName hello-world-logic-function)
|
||||
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
|
||||
env:
|
||||
TWENTY_API_URL: http://localhost:3000
|
||||
run: |
|
||||
cd /tmp/e2e-test-workspace/test-app
|
||||
yarn test
|
||||
|
||||
@@ -25,47 +25,47 @@ See Twenty application documentation https://docs.twenty.com/developers/extend/c
|
||||
## Prerequisites
|
||||
|
||||
- Node.js 24+ (recommended) and Yarn 4
|
||||
- Docker (for the local Twenty dev server)
|
||||
- A Twenty workspace and an API key (create one at https://app.twenty.com/settings/api-webhooks)
|
||||
|
||||
## Quick start
|
||||
|
||||
```bash
|
||||
# Scaffold a new app — the CLI will offer to start a local Twenty server
|
||||
npx create-twenty-app@latest my-twenty-app
|
||||
cd my-twenty-app
|
||||
|
||||
# The scaffolder can automatically:
|
||||
# 1. Start a local Twenty server (Docker)
|
||||
# 2. Open the browser to log in (tim@apple.dev / tim@apple.dev)
|
||||
# 3. Authenticate your app via OAuth
|
||||
# Get help and list all available commands
|
||||
yarn twenty help
|
||||
|
||||
# Or do it manually:
|
||||
yarn twenty server start # Start local Twenty server
|
||||
yarn twenty remote add --local # Authenticate via OAuth
|
||||
# Authenticate using your API key (you'll be prompted)
|
||||
yarn twenty auth:login
|
||||
|
||||
# Add a new entity to your application (guided)
|
||||
yarn twenty entity:add
|
||||
|
||||
# Start dev mode: watches, builds, and syncs local changes to your workspace
|
||||
yarn twenty dev
|
||||
# (also auto-generates typed CoreApiClient — MetadataApiClient ships pre-built with the SDK — both available via `twenty-sdk/clients`)
|
||||
yarn twenty app:dev
|
||||
|
||||
# Watch your application's function logs
|
||||
yarn twenty logs
|
||||
yarn twenty function:logs
|
||||
|
||||
# Execute a function with a JSON payload
|
||||
yarn twenty exec -n my-function -p '{"key": "value"}'
|
||||
yarn twenty function:execute -n my-function -p '{"key": "value"}'
|
||||
|
||||
# Execute the pre-install function
|
||||
yarn twenty exec --preInstall
|
||||
yarn twenty function:execute --preInstall
|
||||
|
||||
# Execute the post-install function
|
||||
yarn twenty exec --postInstall
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Build the app for distribution
|
||||
yarn twenty build
|
||||
yarn twenty app:build
|
||||
|
||||
# Publish the app to npm or directly to a Twenty server
|
||||
yarn twenty publish
|
||||
yarn twenty app:publish
|
||||
|
||||
# Uninstall the application from the current workspace
|
||||
yarn twenty uninstall
|
||||
yarn twenty app:uninstall
|
||||
```
|
||||
|
||||
## Scaffolding modes
|
||||
@@ -107,27 +107,13 @@ npx create-twenty-app@latest my-app -m
|
||||
- `skills/example-skill.ts` — Example AI agent skill definition
|
||||
- `__tests__/app-install.integration-test.ts` — Integration test that builds, installs, and verifies the app (includes `vitest.config.ts`, `tsconfig.spec.json`, and a setup file)
|
||||
|
||||
## Local server
|
||||
|
||||
The scaffolder can start a local Twenty dev server for you (all-in-one Docker image with PostgreSQL, Redis, server, and worker). You can also manage it manually:
|
||||
|
||||
```bash
|
||||
yarn twenty server start # Start (pulls image if needed)
|
||||
yarn twenty server status # Check if it's healthy
|
||||
yarn twenty server logs # Stream logs
|
||||
yarn twenty server stop # Stop (data is preserved)
|
||||
yarn twenty server reset # Wipe all data and start fresh
|
||||
```
|
||||
|
||||
The server is pre-seeded with a workspace and user (`tim@apple.dev` / `tim@apple.dev`).
|
||||
|
||||
## Next steps
|
||||
|
||||
- Run `yarn twenty help` to see all available commands.
|
||||
- Use `yarn twenty remote add --local` to authenticate with your Twenty workspace via OAuth.
|
||||
- Explore the generated project and add your first entity with `yarn twenty add` (logic functions, front components, objects, roles, views, navigation menu items, skills).
|
||||
- Use `yarn twenty dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
|
||||
- `CoreApiClient` (for workspace data via `/graphql`) is auto-generated by `yarn twenty dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient, MetadataApiClient } from 'twenty-sdk/clients'`.
|
||||
- Use `yarn twenty auth:login` to authenticate with your Twenty workspace.
|
||||
- Explore the generated project and add your first entity with `yarn twenty entity:add` (logic functions, front components, objects, roles, views, navigation menu items, skills).
|
||||
- Use `yarn twenty app:dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
|
||||
- `CoreApiClient` (for workspace data via `/graphql`) is auto-generated by `yarn twenty app:dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient, MetadataApiClient } from 'twenty-sdk/clients'`.
|
||||
|
||||
## Build and publish your application
|
||||
|
||||
@@ -135,19 +121,19 @@ Once your app is ready, build and publish it using the CLI:
|
||||
|
||||
```bash
|
||||
# Build the app (output goes to .twenty/output/)
|
||||
yarn twenty build
|
||||
yarn twenty app:build
|
||||
|
||||
# Build and create a tarball (.tgz) for distribution
|
||||
yarn twenty build --tarball
|
||||
yarn twenty app:build --tarball
|
||||
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty publish
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty publish --tag beta
|
||||
yarn twenty app:publish --tag beta
|
||||
|
||||
# Deploy directly to a Twenty server (builds, uploads, and installs in one step)
|
||||
yarn twenty deploy
|
||||
# Publish directly to a Twenty server (builds, uploads, and installs in one step)
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
### Publish to the Twenty marketplace
|
||||
@@ -167,9 +153,8 @@ Our team reviews contributions for quality, security, and reusability before mer
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
- Server not starting: check Docker is running (`docker info`), then try `yarn twenty server logs`.
|
||||
- Auth not working: make sure you're logged in to Twenty in the browser first, then run `yarn twenty remote add --local`.
|
||||
- Types not generated: ensure `yarn twenty dev` is running — it auto-generates the typed client.
|
||||
- Auth prompts not appearing: run `yarn twenty auth:login` again and verify the API key permissions.
|
||||
- Types not generated: ensure `yarn twenty app:dev` is running — it auto‑generates the typed client.
|
||||
|
||||
## Contributing
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-twenty-app",
|
||||
"version": "0.8.0-canary.1",
|
||||
"version": "0.7.0",
|
||||
"description": "Command-line interface to create Twenty application",
|
||||
"main": "dist/cli.cjs",
|
||||
"bin": "dist/cli.cjs",
|
||||
|
||||
@@ -27,10 +27,6 @@ const program = new Command(packageJson.name)
|
||||
'--description <description>',
|
||||
'Application description (skips prompt)',
|
||||
)
|
||||
.option(
|
||||
'--skip-local-instance',
|
||||
'Skip the local Twenty instance setup prompt',
|
||||
)
|
||||
.helpOption('-h, --help', 'Display this help message.')
|
||||
.action(
|
||||
async (
|
||||
@@ -41,7 +37,6 @@ const program = new Command(packageJson.name)
|
||||
name?: string;
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
},
|
||||
) => {
|
||||
const modeFlags = [options?.exhaustive, options?.minimal].filter(Boolean);
|
||||
@@ -77,7 +72,6 @@ const program = new Command(packageJson.name)
|
||||
name: options?.name,
|
||||
displayName: options?.displayName,
|
||||
description: options?.description,
|
||||
skipLocalInstance: options?.skipLocalInstance,
|
||||
});
|
||||
},
|
||||
);
|
||||
|
||||
@@ -1,11 +1,62 @@
|
||||
This is a [Twenty](https://twenty.com) application bootstrapped with [`create-twenty-app`](https://www.npmjs.com/package/create-twenty-app).
|
||||
This is a [Twenty](https://twenty.com) application project bootstrapped with [`create-twenty-app`](https://www.npmjs.com/package/create-twenty-app).
|
||||
|
||||
## Getting Started
|
||||
|
||||
Run `yarn twenty help` to list all available commands.
|
||||
First, authenticate to your workspace:
|
||||
|
||||
```bash
|
||||
yarn twenty auth:login
|
||||
```
|
||||
|
||||
Then, start development mode to sync your app and watch for changes:
|
||||
|
||||
```bash
|
||||
yarn twenty app:dev
|
||||
```
|
||||
|
||||
Open your Twenty instance and go to `/settings/applications` section to see the result.
|
||||
|
||||
## Available Commands
|
||||
|
||||
Run `yarn twenty help` to list all available commands. Common commands:
|
||||
|
||||
```bash
|
||||
# Authentication
|
||||
yarn twenty auth:login # Authenticate with Twenty
|
||||
yarn twenty auth:logout # Remove credentials
|
||||
yarn twenty auth:status # Check auth status
|
||||
yarn twenty auth:switch # Switch default workspace
|
||||
yarn twenty auth:list # List all configured workspaces
|
||||
|
||||
# Application
|
||||
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
|
||||
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
|
||||
yarn twenty function:logs # Stream function logs
|
||||
yarn twenty function:execute # Execute a function with JSON payload
|
||||
yarn twenty app:uninstall # Uninstall app from workspace
|
||||
```
|
||||
|
||||
## Integration Tests
|
||||
|
||||
If your project includes the example integration test (`src/__tests__/app-install.integration-test.ts`), you can run it with:
|
||||
|
||||
```bash
|
||||
# Make sure a Twenty server is running at http://localhost:3000
|
||||
yarn test
|
||||
```
|
||||
|
||||
The test builds and installs the app, then verifies it appears in the applications list. Test configuration (API URL and API key) is defined in `vitest.config.ts`.
|
||||
|
||||
## LLMs instructions
|
||||
|
||||
Main docs and pitfalls are available in LLMS.md file.
|
||||
|
||||
## Learn More
|
||||
|
||||
- [Twenty Apps documentation](https://docs.twenty.com/developers/extend/capabilities/apps)
|
||||
- [twenty-sdk CLI reference](https://www.npmjs.com/package/twenty-sdk)
|
||||
- [Discord](https://discord.gg/cx5n4Jzs57)
|
||||
To learn more about Twenty applications, take a look at the following resources:
|
||||
|
||||
- [twenty-sdk](https://www.npmjs.com/package/twenty-sdk) - learn about `twenty-sdk` tool.
|
||||
- [Twenty doc](https://docs.twenty.com/) - Twenty's documentation.
|
||||
- Join our [Discord](https://discord.gg/cx5n4Jzs57)
|
||||
|
||||
You can check out [the Twenty GitHub repository](https://github.com/twentyhq/twenty) - your feedback and contributions are welcome!
|
||||
|
||||
@@ -1,16 +1,11 @@
|
||||
import { copyBaseApplicationProject } from '@/utils/app-template';
|
||||
import { convertToLabel } from '@/utils/convert-to-label';
|
||||
import { install } from '@/utils/install';
|
||||
import {
|
||||
type LocalInstanceResult,
|
||||
setupLocalInstance,
|
||||
} from '@/utils/setup-local-instance';
|
||||
import { tryGitInit } from '@/utils/try-git-init';
|
||||
import chalk from 'chalk';
|
||||
import * as fs from 'fs-extra';
|
||||
import inquirer from 'inquirer';
|
||||
import kebabCase from 'lodash.kebabcase';
|
||||
import { execSync } from 'node:child_process';
|
||||
import * as path from 'path';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
@@ -27,7 +22,6 @@ type CreateAppOptions = {
|
||||
name?: string;
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
};
|
||||
|
||||
export class CreateAppCommand {
|
||||
@@ -46,7 +40,6 @@ export class CreateAppCommand {
|
||||
|
||||
await fs.ensureDir(appDirectory);
|
||||
|
||||
console.log(chalk.gray(' Scaffolding project files...'));
|
||||
await copyBaseApplicationProject({
|
||||
appName,
|
||||
appDisplayName,
|
||||
@@ -55,24 +48,11 @@ export class CreateAppCommand {
|
||||
exampleOptions,
|
||||
});
|
||||
|
||||
console.log(chalk.gray(' Installing dependencies...'));
|
||||
await install(appDirectory);
|
||||
|
||||
console.log(chalk.gray(' Initializing git repository...'));
|
||||
await tryGitInit(appDirectory);
|
||||
|
||||
let localResult: LocalInstanceResult = { running: false };
|
||||
|
||||
if (!options.skipLocalInstance) {
|
||||
// Auto-detect a running server first
|
||||
localResult = await setupLocalInstance(appDirectory);
|
||||
|
||||
if (localResult.running && localResult.serverUrl) {
|
||||
await this.connectToLocal(appDirectory, localResult.serverUrl);
|
||||
}
|
||||
}
|
||||
|
||||
this.logSuccess(appDirectory, localResult);
|
||||
this.logSuccess(appDirectory);
|
||||
} catch (error) {
|
||||
console.error(
|
||||
chalk.red('Initialization failed:'),
|
||||
@@ -193,55 +173,22 @@ export class CreateAppCommand {
|
||||
appDirectory: string;
|
||||
appName: string;
|
||||
}): void {
|
||||
console.log(chalk.blue('Creating Twenty Application'));
|
||||
console.log(chalk.gray(` Directory: ${appDirectory}`));
|
||||
console.log(chalk.gray(` Name: ${appName}`));
|
||||
console.log(chalk.blue('🎯 Creating Twenty Application'));
|
||||
console.log(chalk.gray(`📁 Directory: ${appDirectory}`));
|
||||
console.log(chalk.gray(`📝 Name: ${appName}`));
|
||||
console.log('');
|
||||
}
|
||||
|
||||
private async connectToLocal(
|
||||
appDirectory: string,
|
||||
serverUrl: string,
|
||||
): Promise<void> {
|
||||
try {
|
||||
execSync(
|
||||
`npx nx run twenty-sdk:start -- remote add ${serverUrl} --as local`,
|
||||
{
|
||||
cwd: appDirectory,
|
||||
stdio: 'inherit',
|
||||
},
|
||||
);
|
||||
console.log(chalk.green('Authenticated with local Twenty instance.'));
|
||||
} catch {
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
'Authentication skipped. Run `npx nx run twenty-sdk:start -- remote add --local` manually.',
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
private logSuccess(
|
||||
appDirectory: string,
|
||||
localResult: LocalInstanceResult,
|
||||
): void {
|
||||
private logSuccess(appDirectory: string): void {
|
||||
const dirName = appDirectory.split('/').reverse()[0] ?? '';
|
||||
|
||||
console.log(chalk.green('Application created!'));
|
||||
console.log(chalk.green('✅ Application created!'));
|
||||
console.log('');
|
||||
console.log(chalk.blue('Next steps:'));
|
||||
console.log(chalk.gray(` cd ${dirName}`));
|
||||
|
||||
if (!localResult.running) {
|
||||
console.log(
|
||||
chalk.gray(
|
||||
' yarn twenty remote add --local # Authenticate with Twenty',
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
console.log(
|
||||
chalk.gray(' yarn twenty dev # Start dev mode'),
|
||||
chalk.gray(' yarn twenty auth:login # Authenticate with Twenty'),
|
||||
);
|
||||
console.log(chalk.gray(' yarn twenty app:dev # Start dev mode'));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -103,6 +103,7 @@ describe('scaffoldIntegrationTest', () => {
|
||||
|
||||
expect(content).toContain('TWENTY_API_KEY');
|
||||
expect(content).not.toContain('TWENTY_TEST_API_KEY');
|
||||
expect(content).toContain('TWENTY_API_URL');
|
||||
expect(content).toContain('setup-test.ts');
|
||||
expect(content).toContain('tsconfig.spec.json');
|
||||
expect(content).toContain('integration-test.ts');
|
||||
|
||||
@@ -610,9 +610,8 @@ const createPackageJson = async ({
|
||||
const devDependencies: Record<string, string> = {
|
||||
typescript: '^5.9.3',
|
||||
'@types/node': '^24.7.2',
|
||||
'@types/react': '^19.0.0',
|
||||
react: '^19.0.0',
|
||||
'react-dom': '^19.0.0',
|
||||
'@types/react': '^18.2.0',
|
||||
react: '^18.2.0',
|
||||
oxlint: '^0.16.0',
|
||||
'twenty-sdk': createTwentyAppPackageJson.version,
|
||||
};
|
||||
|
||||
@@ -1,101 +0,0 @@
|
||||
import chalk from 'chalk';
|
||||
import { execSync } from 'node:child_process';
|
||||
import { platform } from 'node:os';
|
||||
|
||||
const DEFAULT_PORT = 2020;
|
||||
|
||||
// Minimal health check — the full implementation lives in twenty-sdk
|
||||
const isServerReady = async (port: number): Promise<boolean> => {
|
||||
const controller = new AbortController();
|
||||
const timeoutId = setTimeout(() => controller.abort(), 3000);
|
||||
|
||||
try {
|
||||
const response = await fetch(`http://localhost:${port}/healthz`, {
|
||||
signal: controller.signal,
|
||||
});
|
||||
|
||||
const body = await response.json();
|
||||
|
||||
return body.status === 'ok';
|
||||
} catch {
|
||||
return false;
|
||||
} finally {
|
||||
clearTimeout(timeoutId);
|
||||
}
|
||||
};
|
||||
|
||||
export type LocalInstanceResult = {
|
||||
running: boolean;
|
||||
serverUrl?: string;
|
||||
};
|
||||
|
||||
export const setupLocalInstance = async (
|
||||
appDirectory: string,
|
||||
): Promise<LocalInstanceResult> => {
|
||||
console.log('');
|
||||
console.log(chalk.blue('Setting up local Twenty instance...'));
|
||||
|
||||
if (await isServerReady(DEFAULT_PORT)) {
|
||||
const serverUrl = `http://localhost:${DEFAULT_PORT}`;
|
||||
|
||||
console.log(chalk.green(`Twenty server detected on ${serverUrl}.`));
|
||||
|
||||
return { running: true, serverUrl };
|
||||
}
|
||||
|
||||
// Delegate to `twenty server start` from the scaffolded app
|
||||
console.log(chalk.gray('Starting local Twenty server...'));
|
||||
|
||||
try {
|
||||
execSync('yarn twenty server start', {
|
||||
cwd: appDirectory,
|
||||
stdio: 'inherit',
|
||||
});
|
||||
} catch {
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
'Failed to start Twenty server. Run `yarn twenty server start` manually.',
|
||||
),
|
||||
);
|
||||
|
||||
return { running: false };
|
||||
}
|
||||
|
||||
console.log(chalk.gray('Waiting for Twenty to be ready...'));
|
||||
|
||||
const startTime = Date.now();
|
||||
const timeoutMs = 180 * 1000;
|
||||
|
||||
while (Date.now() - startTime < timeoutMs) {
|
||||
if (await isServerReady(DEFAULT_PORT)) {
|
||||
const serverUrl = `http://localhost:${DEFAULT_PORT}`;
|
||||
|
||||
console.log(chalk.green(`Twenty server is running on ${serverUrl}.`));
|
||||
console.log(
|
||||
chalk.gray(
|
||||
'Workspace ready — login with tim@apple.dev / tim@apple.dev',
|
||||
),
|
||||
);
|
||||
|
||||
const openCommand = platform() === 'darwin' ? 'open' : 'xdg-open';
|
||||
|
||||
try {
|
||||
execSync(`${openCommand} ${serverUrl}`, { stdio: 'ignore' });
|
||||
} catch {
|
||||
// Ignore if browser can't be opened
|
||||
}
|
||||
|
||||
return { running: true, serverUrl };
|
||||
}
|
||||
|
||||
await new Promise((resolve) => setTimeout(resolve, 2000));
|
||||
}
|
||||
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
'Twenty server did not become healthy in time. Check: yarn twenty server logs',
|
||||
),
|
||||
);
|
||||
|
||||
return { running: false };
|
||||
};
|
||||
@@ -45,6 +45,7 @@ export default defineConfig({
|
||||
include: ['src/**/*.integration-test.ts'],
|
||||
setupFiles: ['src/__tests__/setup-test.ts'],
|
||||
env: {
|
||||
TWENTY_API_URL: 'http://localhost:3000',
|
||||
TWENTY_API_KEY:
|
||||
'${SEED_API_KEY}',
|
||||
},
|
||||
@@ -93,7 +94,7 @@ import * as os from 'os';
|
||||
import * as path from 'path';
|
||||
import { beforeAll } from 'vitest';
|
||||
|
||||
const TWENTY_API_URL = process.env.TWENTY_API_URL ?? 'http://localhost:2020';
|
||||
const TWENTY_API_URL = process.env.TWENTY_API_URL ?? 'http://localhost:3000';
|
||||
const TEST_CONFIG_DIR = path.join(os.tmpdir(), '.twenty-sdk-test');
|
||||
|
||||
const assertServerIsReachable = async () => {
|
||||
@@ -119,13 +120,12 @@ beforeAll(async () => {
|
||||
fs.mkdirSync(TEST_CONFIG_DIR, { recursive: true });
|
||||
|
||||
const configFile = {
|
||||
remotes: {
|
||||
local: {
|
||||
profiles: {
|
||||
default: {
|
||||
apiUrl: process.env.TWENTY_API_URL,
|
||||
apiKey: process.env.TWENTY_API_KEY,
|
||||
},
|
||||
},
|
||||
defaultRemote: 'local',
|
||||
};
|
||||
|
||||
fs.writeFileSync(
|
||||
|
||||
@@ -5,13 +5,13 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
|
||||
First, authenticate to your workspace:
|
||||
|
||||
```bash
|
||||
yarn twenty remote add --local
|
||||
yarn twenty auth:login
|
||||
```
|
||||
|
||||
Then, start development mode to sync your app and watch for changes:
|
||||
|
||||
```bash
|
||||
yarn twenty dev
|
||||
yarn twenty app:dev
|
||||
```
|
||||
|
||||
Open your Twenty instance and go to `/settings/applications` section to see the result.
|
||||
@@ -21,19 +21,19 @@ Open your Twenty instance and go to `/settings/applications` section to see the
|
||||
Run `yarn twenty help` to list all available commands. Common commands:
|
||||
|
||||
```bash
|
||||
# Remotes & Authentication
|
||||
yarn twenty remote add --local # Authenticate with Twenty
|
||||
yarn twenty remote status # Check auth status
|
||||
yarn twenty remote switch # Switch default remote
|
||||
yarn twenty remote list # List all configured remotes
|
||||
yarn twenty remote remove <name> # Remove a remote
|
||||
# Authentication
|
||||
yarn twenty auth:login # Authenticate with Twenty
|
||||
yarn twenty auth:logout # Remove credentials
|
||||
yarn twenty auth:status # Check auth status
|
||||
yarn twenty auth:switch # Switch default workspace
|
||||
yarn twenty auth:list # List all configured workspaces
|
||||
|
||||
# Application
|
||||
yarn twenty dev # Start dev mode (watch, build, sync, and auto-generate typed client)
|
||||
yarn twenty add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
|
||||
yarn twenty logs # Stream function logs
|
||||
yarn twenty exec # Execute a function with JSON payload
|
||||
yarn twenty uninstall # Uninstall app from workspace
|
||||
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
|
||||
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
|
||||
yarn twenty function:logs # Stream function logs
|
||||
yarn twenty function:execute # Execute a function with JSON payload
|
||||
yarn twenty app:uninstall # Uninstall app from workspace
|
||||
```
|
||||
|
||||
## LLMs instructions
|
||||
|
||||
@@ -9,9 +9,9 @@
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"dev": "twenty dev",
|
||||
"exec": "twenty exec",
|
||||
"uninstall": "twenty uninstall",
|
||||
"app:dev": "twenty app:dev",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
|
||||
@@ -9,16 +9,16 @@
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"remote:add": "twenty remote add --local",
|
||||
"remote:status": "twenty remote status",
|
||||
"remote:switch": "twenty remote switch",
|
||||
"remote:list": "twenty remote list",
|
||||
"remote:remove": "twenty remote remove",
|
||||
"dev": "twenty dev",
|
||||
"add": "twenty add",
|
||||
"logs": "twenty logs",
|
||||
"exec": "twenty exec",
|
||||
"uninstall": "twenty uninstall",
|
||||
"auth:login": "twenty auth:login",
|
||||
"auth:logout": "twenty auth:logout",
|
||||
"auth:status": "twenty auth:status",
|
||||
"auth:switch": "twenty auth:switch",
|
||||
"auth:list": "twenty auth:list",
|
||||
"app:dev": "twenty app:dev",
|
||||
"entity:add": "twenty entity:add",
|
||||
"function:logs": "twenty function:logs",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"help": "twenty help",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
|
||||
@@ -9,16 +9,16 @@
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"remote:add": "twenty remote add --local",
|
||||
"remote:status": "twenty remote status",
|
||||
"remote:switch": "twenty remote switch",
|
||||
"remote:list": "twenty remote list",
|
||||
"remote:remove": "twenty remote remove",
|
||||
"dev": "twenty dev",
|
||||
"add": "twenty add",
|
||||
"logs": "twenty logs",
|
||||
"exec": "twenty exec",
|
||||
"uninstall": "twenty uninstall",
|
||||
"auth:login": "twenty auth:login",
|
||||
"auth:logout": "twenty auth:logout",
|
||||
"auth:status": "twenty auth:status",
|
||||
"auth:switch": "twenty auth:switch",
|
||||
"auth:list": "twenty auth:list",
|
||||
"app:dev": "twenty app:dev",
|
||||
"entity:add": "twenty entity:add",
|
||||
"function:logs": "twenty function:logs",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"help": "twenty help",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
|
||||
@@ -9,16 +9,16 @@
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"remote:add": "twenty remote add --local",
|
||||
"remote:status": "twenty remote status",
|
||||
"remote:switch": "twenty remote switch",
|
||||
"remote:list": "twenty remote list",
|
||||
"remote:remove": "twenty remote remove",
|
||||
"dev": "twenty dev",
|
||||
"add": "twenty add",
|
||||
"logs": "twenty logs",
|
||||
"exec": "twenty exec",
|
||||
"uninstall": "twenty uninstall",
|
||||
"auth:login": "twenty auth:login",
|
||||
"auth:logout": "twenty auth:logout",
|
||||
"auth:status": "twenty auth:status",
|
||||
"auth:switch": "twenty auth:switch",
|
||||
"auth:list": "twenty auth:list",
|
||||
"app:dev": "twenty app:dev",
|
||||
"entity:add": "twenty entity:add",
|
||||
"function:logs": "twenty function:logs",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"help": "twenty help",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
|
||||
@@ -5,13 +5,13 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
|
||||
First, authenticate to your workspace:
|
||||
|
||||
```bash
|
||||
yarn twenty remote add --local
|
||||
yarn twenty auth:login
|
||||
```
|
||||
|
||||
Then, start development mode to sync your app and watch for changes:
|
||||
|
||||
```bash
|
||||
yarn twenty dev
|
||||
yarn twenty app:dev
|
||||
```
|
||||
|
||||
Open your Twenty instance and go to `/settings/applications` section to see the result.
|
||||
@@ -21,19 +21,19 @@ Open your Twenty instance and go to `/settings/applications` section to see the
|
||||
Run `yarn twenty help` to list all available commands. Common commands:
|
||||
|
||||
```bash
|
||||
# Remotes & Authentication
|
||||
yarn twenty remote add --local # Authenticate with Twenty
|
||||
yarn twenty remote status # Check auth status
|
||||
yarn twenty remote switch # Switch default remote
|
||||
yarn twenty remote list # List all configured remotes
|
||||
yarn twenty remote remove <name> # Remove a remote
|
||||
# Authentication
|
||||
yarn twenty auth:login # Authenticate with Twenty
|
||||
yarn twenty auth:logout # Remove credentials
|
||||
yarn twenty auth:status # Check auth status
|
||||
yarn twenty auth:switch # Switch default workspace
|
||||
yarn twenty auth:list # List all configured workspaces
|
||||
|
||||
# Application
|
||||
yarn twenty dev # Start dev mode (watch, build, sync, and auto-generate typed client)
|
||||
yarn twenty add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
|
||||
yarn twenty logs # Stream function logs
|
||||
yarn twenty exec # Execute a function with JSON payload
|
||||
yarn twenty uninstall # Uninstall app from workspace
|
||||
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
|
||||
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
|
||||
yarn twenty function:logs # Stream function logs
|
||||
yarn twenty function:execute # Execute a function with JSON payload
|
||||
yarn twenty app:uninstall # Uninstall app from workspace
|
||||
```
|
||||
|
||||
## Integration Tests
|
||||
|
||||
@@ -29,13 +29,12 @@ beforeAll(async () => {
|
||||
fs.mkdirSync(TEST_CONFIG_DIR, { recursive: true });
|
||||
|
||||
const configFile = {
|
||||
remotes: {
|
||||
local: {
|
||||
profiles: {
|
||||
default: {
|
||||
apiUrl: process.env.TWENTY_API_URL,
|
||||
apiKey: process.env.TWENTY_API_KEY,
|
||||
},
|
||||
},
|
||||
defaultRemote: 'local',
|
||||
};
|
||||
|
||||
fs.writeFileSync(
|
||||
|
||||
@@ -5,13 +5,13 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
|
||||
First, authenticate to your workspace:
|
||||
|
||||
```bash
|
||||
yarn twenty remote add --local
|
||||
yarn twenty auth:login
|
||||
```
|
||||
|
||||
Then, start development mode to sync your app and watch for changes:
|
||||
|
||||
```bash
|
||||
yarn twenty dev
|
||||
yarn twenty app:dev
|
||||
```
|
||||
|
||||
Open your Twenty instance and go to `/settings/applications` section to see the result.
|
||||
@@ -21,19 +21,19 @@ Open your Twenty instance and go to `/settings/applications` section to see the
|
||||
Run `yarn twenty help` to list all available commands. Common commands:
|
||||
|
||||
```bash
|
||||
# Remotes & Authentication
|
||||
yarn twenty remote add --local # Authenticate with Twenty
|
||||
yarn twenty remote status # Check auth status
|
||||
yarn twenty remote switch # Switch default remote
|
||||
yarn twenty remote list # List all configured remotes
|
||||
yarn twenty remote remove <name> # Remove a remote
|
||||
# Authentication
|
||||
yarn twenty auth:login # Authenticate with Twenty
|
||||
yarn twenty auth:logout # Remove credentials
|
||||
yarn twenty auth:status # Check auth status
|
||||
yarn twenty auth:switch # Switch default workspace
|
||||
yarn twenty auth:list # List all configured workspaces
|
||||
|
||||
# Application
|
||||
yarn twenty dev # Start dev mode (watch, build, sync, and auto-generate typed client)
|
||||
yarn twenty add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
|
||||
yarn twenty logs # Stream function logs
|
||||
yarn twenty exec # Execute a function with JSON payload
|
||||
yarn twenty uninstall # Uninstall app from workspace
|
||||
yarn twenty app:dev # Start dev mode (watch, build, sync, and auto-generate typed client)
|
||||
yarn twenty entity:add # Add a new entity (object, field, function, front-component, role, view, navigation-menu-item)
|
||||
yarn twenty function:logs # Stream function logs
|
||||
yarn twenty function:execute # Execute a function with JSON payload
|
||||
yarn twenty app:uninstall # Uninstall app from workspace
|
||||
```
|
||||
|
||||
## LLMs instructions
|
||||
|
||||
@@ -236,7 +236,7 @@ const handler = async (event: any) => {
|
||||
},
|
||||
});
|
||||
|
||||
// TODO: remove `as any` after running `yarn twenty dev` to regenerate the typed client
|
||||
// TODO: remove `as any` after running `yarn twenty app:dev` to regenerate the typed client
|
||||
const updateSummary = async (markdown: string) => {
|
||||
await client.mutation({
|
||||
updateCallRecording: {
|
||||
|
||||
@@ -38,6 +38,7 @@ services:
|
||||
|
||||
# EMAIL_FROM_ADDRESS: ${EMAIL_FROM_ADDRESS:-contact@yourdomain.com}
|
||||
# EMAIL_FROM_NAME: ${EMAIL_FROM_NAME:-"John from YourDomain"}
|
||||
# EMAIL_SYSTEM_ADDRESS: ${EMAIL_SYSTEM_ADDRESS:-system@yourdomain.com}
|
||||
# EMAIL_DRIVER: ${EMAIL_DRIVER:-smtp}
|
||||
# EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST:-smtp.gmail.com}
|
||||
# EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT:-465}
|
||||
@@ -91,6 +92,7 @@ services:
|
||||
|
||||
# EMAIL_FROM_ADDRESS: ${EMAIL_FROM_ADDRESS:-contact@yourdomain.com}
|
||||
# EMAIL_FROM_NAME: ${EMAIL_FROM_NAME:-"John from YourDomain"}
|
||||
# EMAIL_SYSTEM_ADDRESS: ${EMAIL_SYSTEM_ADDRESS:-system@yourdomain.com}
|
||||
# EMAIL_DRIVER: ${EMAIL_DRIVER:-smtp}
|
||||
# EMAIL_SMTP_HOST: ${EMAIL_SMTP_HOST:-smtp.gmail.com}
|
||||
# EMAIL_SMTP_PORT: ${EMAIL_SMTP_PORT:-465}
|
||||
|
||||
@@ -61,6 +61,7 @@
|
||||
"EMAIL_SMTP_NO_TLS": { "type": "boolean" },
|
||||
"EMAIL_FROM_ADDRESS": { "type": "string" },
|
||||
"EMAIL_FROM_NAME": { "type": "string" },
|
||||
"EMAIL_SYSTEM_ADDRESS": { "type": "string" },
|
||||
"IS_EMAIL_VERIFICATION_REQUIRED": { "type": "boolean" },
|
||||
"EMAIL_VERIFICATION_TOKEN_EXPIRES_IN": { "type": "string" },
|
||||
"PASSWORD_RESET_TOKEN_EXPIRES_IN": { "type": "string" }
|
||||
|
||||
@@ -1,130 +0,0 @@
|
||||
ARG APP_VERSION
|
||||
|
||||
# === Stage 1: Common dependencies ===
|
||||
FROM node:22-alpine AS common-deps
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY ./package.json ./yarn.lock ./.yarnrc.yml ./tsconfig.base.json ./nx.json /app/
|
||||
COPY ./.yarn/releases /app/.yarn/releases
|
||||
COPY ./.yarn/patches /app/.yarn/patches
|
||||
|
||||
COPY ./packages/twenty-emails/package.json /app/packages/twenty-emails/
|
||||
COPY ./packages/twenty-server/package.json /app/packages/twenty-server/
|
||||
COPY ./packages/twenty-server/patches /app/packages/twenty-server/patches
|
||||
COPY ./packages/twenty-ui/package.json /app/packages/twenty-ui/
|
||||
COPY ./packages/twenty-shared/package.json /app/packages/twenty-shared/
|
||||
COPY ./packages/twenty-front/package.json /app/packages/twenty-front/
|
||||
COPY ./packages/twenty-sdk/package.json /app/packages/twenty-sdk/
|
||||
|
||||
RUN yarn && yarn cache clean && npx nx reset
|
||||
|
||||
# === Stage 2: Build server from source ===
|
||||
FROM common-deps AS twenty-server-build
|
||||
|
||||
COPY ./packages/twenty-emails /app/packages/twenty-emails
|
||||
COPY ./packages/twenty-shared /app/packages/twenty-shared
|
||||
COPY ./packages/twenty-ui /app/packages/twenty-ui
|
||||
COPY ./packages/twenty-sdk /app/packages/twenty-sdk
|
||||
COPY ./packages/twenty-server /app/packages/twenty-server
|
||||
|
||||
RUN npx nx run twenty-server:build
|
||||
RUN yarn workspaces focus --production twenty-emails twenty-shared twenty-sdk twenty-server
|
||||
|
||||
# === Stage 3: Build frontend from source ===
|
||||
# Requires ~10GB Docker memory. To skip, pre-build on host first:
|
||||
# npx nx build twenty-front
|
||||
# The COPY below will pick up packages/twenty-front/build/ if it exists.
|
||||
FROM common-deps AS twenty-front-build
|
||||
COPY --from=twenty-server-build /app/package.json /tmp/.build-sentinel
|
||||
|
||||
COPY ./packages/twenty-front /app/packages/twenty-front
|
||||
COPY ./packages/twenty-ui /app/packages/twenty-ui
|
||||
COPY ./packages/twenty-shared /app/packages/twenty-shared
|
||||
COPY ./packages/twenty-sdk /app/packages/twenty-sdk
|
||||
RUN if [ -d /app/packages/twenty-front/build ]; then \
|
||||
echo "Using pre-built frontend from host"; \
|
||||
else \
|
||||
NODE_OPTIONS="--max-old-space-size=8192" npx nx build twenty-front; \
|
||||
fi
|
||||
|
||||
# === Stage 4: s6-overlay ===
|
||||
FROM alpine:3.20 AS s6-fetch
|
||||
ARG S6_OVERLAY_VERSION=3.2.0.2
|
||||
ARG TARGETARCH
|
||||
RUN if [ "$TARGETARCH" = "arm64" ]; then echo "aarch64" > /tmp/s6arch; \
|
||||
else echo "x86_64" > /tmp/s6arch; fi
|
||||
RUN S6_ARCH=$(cat /tmp/s6arch) && \
|
||||
wget -O /tmp/s6-overlay-noarch.tar.xz \
|
||||
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz" && \
|
||||
wget -O /tmp/s6-overlay-noarch.tar.xz.sha256 \
|
||||
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-noarch.tar.xz.sha256" && \
|
||||
wget -O /tmp/s6-overlay-arch.tar.xz \
|
||||
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz" && \
|
||||
wget -O /tmp/s6-overlay-arch.tar.xz.sha256 \
|
||||
"https://github.com/just-containers/s6-overlay/releases/download/v${S6_OVERLAY_VERSION}/s6-overlay-${S6_ARCH}.tar.xz.sha256" && \
|
||||
cd /tmp && \
|
||||
NOARCH_SUM=$(awk '{print $1}' s6-overlay-noarch.tar.xz.sha256) && \
|
||||
ARCH_SUM=$(awk '{print $1}' s6-overlay-arch.tar.xz.sha256) && \
|
||||
echo "$NOARCH_SUM s6-overlay-noarch.tar.xz" | sha256sum -c - && \
|
||||
echo "$ARCH_SUM s6-overlay-arch.tar.xz" | sha256sum -c -
|
||||
|
||||
# === Stage 5: Final all-in-one image ===
|
||||
FROM node:22-alpine
|
||||
|
||||
# s6-overlay
|
||||
COPY --from=s6-fetch /tmp/s6-overlay-noarch.tar.xz /tmp/
|
||||
COPY --from=s6-fetch /tmp/s6-overlay-arch.tar.xz /tmp/
|
||||
RUN tar -C / -Jxpf /tmp/s6-overlay-noarch.tar.xz \
|
||||
&& tar -C / -Jxpf /tmp/s6-overlay-arch.tar.xz \
|
||||
&& rm /tmp/s6-overlay-*.tar.xz
|
||||
|
||||
# Infrastructure: Postgres, Redis, and utilities
|
||||
RUN apk add --no-cache \
|
||||
postgresql16 postgresql16-contrib \
|
||||
redis \
|
||||
curl jq su-exec
|
||||
|
||||
# tsx for database setup scripts
|
||||
RUN npm install -g tsx
|
||||
|
||||
# Twenty application (both server and frontend built from source)
|
||||
COPY --from=twenty-server-build /app /app
|
||||
COPY --from=twenty-front-build /app/packages/twenty-front/build /app/packages/twenty-server/dist/front
|
||||
|
||||
# s6 service definitions
|
||||
COPY packages/twenty-docker/twenty-app-dev/rootfs/ /
|
||||
|
||||
# Data directories
|
||||
RUN mkdir -p /data/postgres /data/redis /app/.local-storage \
|
||||
&& chown -R postgres:postgres /data/postgres \
|
||||
&& chown 1000:1000 /data/redis /app/.local-storage
|
||||
|
||||
ARG REACT_APP_SERVER_BASE_URL
|
||||
ARG APP_VERSION=0.0.0
|
||||
|
||||
# Tell s6-overlay to preserve container environment variables
|
||||
ENV S6_KEEP_ENV=1
|
||||
|
||||
# Environment defaults
|
||||
ENV PG_DATABASE_URL=postgres://twenty:twenty@localhost:5432/default \
|
||||
SERVER_URL=http://localhost:2020 \
|
||||
REDIS_URL=redis://localhost:6379 \
|
||||
STORAGE_TYPE=local \
|
||||
APP_SECRET=twenty-app-dev-secret-not-for-production \
|
||||
REACT_APP_SERVER_BASE_URL=$REACT_APP_SERVER_BASE_URL \
|
||||
APP_VERSION=$APP_VERSION \
|
||||
NODE_ENV=development \
|
||||
NODE_PORT=3000 \
|
||||
DISABLE_DB_MIGRATIONS=true \
|
||||
DISABLE_CRON_JOBS_REGISTRATION=true \
|
||||
IS_BILLING_ENABLED=false \
|
||||
SIGN_IN_PREFILLED=true
|
||||
|
||||
EXPOSE 3000
|
||||
VOLUME ["/data/postgres", "/app/.local-storage"]
|
||||
|
||||
LABEL org.opencontainers.image.source=https://github.com/twentyhq/twenty
|
||||
LABEL org.opencontainers.image.description="All-in-one Twenty image for local development and SDK usage. Includes PostgreSQL, Redis, server, and worker."
|
||||
|
||||
ENTRYPOINT ["/init"]
|
||||
@@ -1 +0,0 @@
|
||||
oneshot
|
||||
@@ -1 +0,0 @@
|
||||
/bin/sh /etc/s6-overlay/scripts/init-db.sh
|
||||
@@ -1,13 +0,0 @@
|
||||
#!/bin/sh
|
||||
# Initialize PostgreSQL data directory if empty
|
||||
if [ ! -f /data/postgres/PG_VERSION ]; then
|
||||
echo "Initializing PostgreSQL data directory..."
|
||||
su-exec postgres initdb -D /data/postgres --auth=trust --encoding=UTF8
|
||||
# Allow local connections without password
|
||||
echo "host all all 127.0.0.1/32 trust" >> /data/postgres/pg_hba.conf
|
||||
echo "host all all ::1/128 trust" >> /data/postgres/pg_hba.conf
|
||||
fi
|
||||
|
||||
exec su-exec postgres postgres -D /data/postgres \
|
||||
-c listen_addresses=localhost \
|
||||
-c unix_socket_directories=/tmp
|
||||
@@ -1 +0,0 @@
|
||||
longrun
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/bin/sh
|
||||
exec redis-server \
|
||||
--dir /data/redis \
|
||||
--maxmemory-policy noeviction \
|
||||
--bind 127.0.0.1 \
|
||||
--protected-mode yes
|
||||
@@ -1 +0,0 @@
|
||||
longrun
|
||||
@@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
cd /app/packages/twenty-server
|
||||
exec yarn start:prod
|
||||
@@ -1 +0,0 @@
|
||||
longrun
|
||||
@@ -1,3 +0,0 @@
|
||||
#!/bin/sh
|
||||
cd /app/packages/twenty-server
|
||||
exec yarn worker:prod
|
||||
@@ -1 +0,0 @@
|
||||
longrun
|
||||
@@ -1,56 +0,0 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
# Wait for PostgreSQL to be ready (timeout after 60s)
|
||||
echo "Waiting for PostgreSQL..."
|
||||
TRIES=0
|
||||
until su-exec postgres pg_isready -h localhost; do
|
||||
TRIES=$((TRIES + 1))
|
||||
if [ "$TRIES" -ge 120 ]; then
|
||||
echo "ERROR: PostgreSQL did not become ready within 60s"
|
||||
exit 1
|
||||
fi
|
||||
sleep 0.5
|
||||
done
|
||||
echo "PostgreSQL is ready."
|
||||
|
||||
# Create role if it doesn't exist
|
||||
su-exec postgres psql -h localhost -tc \
|
||||
"SELECT 1 FROM pg_roles WHERE rolname='twenty'" | grep -q 1 \
|
||||
|| su-exec postgres psql -h localhost -c "CREATE ROLE twenty WITH LOGIN PASSWORD 'twenty' SUPERUSER"
|
||||
|
||||
# Create database if it doesn't exist
|
||||
su-exec postgres psql -h localhost -tc \
|
||||
"SELECT 1 FROM pg_database WHERE datname='default'" | grep -q 1 \
|
||||
|| su-exec postgres createdb -h localhost -O twenty default
|
||||
|
||||
# Run Twenty database setup and migrations
|
||||
cd /app/packages/twenty-server
|
||||
|
||||
has_schema=$(PGPASSWORD=twenty psql -h localhost -U twenty -d default -tAc \
|
||||
"SELECT EXISTS (SELECT 1 FROM information_schema.schemata WHERE schema_name = 'core')")
|
||||
|
||||
if [ "$has_schema" = "f" ]; then
|
||||
echo "Database appears to be empty, running initial setup..."
|
||||
NODE_OPTIONS="--max-old-space-size=1500" tsx ./scripts/setup-db.ts
|
||||
fi
|
||||
|
||||
# Always run migrations (idempotent — skips already-applied ones)
|
||||
yarn database:migrate:prod
|
||||
|
||||
yarn command:prod cache:flush
|
||||
yarn command:prod upgrade
|
||||
yarn command:prod cache:flush
|
||||
|
||||
# Only seed on first boot — check if the dev workspace already exists
|
||||
has_workspace=$(PGPASSWORD=twenty psql -h localhost -U twenty -d default -tAc \
|
||||
"SELECT EXISTS (SELECT 1 FROM core.workspace WHERE id = '20202020-1c25-4d02-bf25-6aeccf7ea419')")
|
||||
|
||||
if [ "$has_workspace" = "f" ]; then
|
||||
echo "Seeding app dev data..."
|
||||
yarn command:prod workspace:seed:dev --light || true
|
||||
else
|
||||
echo "Dev workspace already seeded, skipping."
|
||||
fi
|
||||
|
||||
echo "Database initialization complete."
|
||||
@@ -20,51 +20,19 @@ Apps let you build and manage Twenty customizations **as code**. Instead of conf
|
||||
## Prerequisites
|
||||
|
||||
- Node.js 24+ and Yarn 4
|
||||
- Docker (for the local Twenty dev server)
|
||||
- A Twenty workspace and an API key (create one at https://app.twenty.com/settings/api-webhooks)
|
||||
|
||||
## Getting Started
|
||||
|
||||
Create a new app using the official scaffolder. It can automatically start a local Twenty instance for you:
|
||||
Create a new app using the official scaffolder, then authenticate and start developing:
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Scaffold a new app — the CLI will offer to start a local Twenty server
|
||||
# Scaffold a new app (includes all examples by default)
|
||||
npx create-twenty-app@latest my-twenty-app
|
||||
cd my-twenty-app
|
||||
|
||||
# Start dev mode: automatically syncs local changes to your workspace
|
||||
yarn twenty dev
|
||||
```
|
||||
|
||||
### Local Server Management
|
||||
|
||||
The SDK includes commands to manage a local Twenty dev server (all-in-one Docker image with PostgreSQL, Redis, server, and worker):
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Start the local server (pulls the image if needed)
|
||||
yarn twenty server start
|
||||
|
||||
# Check server status
|
||||
yarn twenty server status
|
||||
|
||||
# Stream server logs
|
||||
yarn twenty server logs
|
||||
|
||||
# Stop the server
|
||||
yarn twenty server stop
|
||||
|
||||
# Reset all data and start fresh
|
||||
yarn twenty server reset
|
||||
```
|
||||
|
||||
The local server comes pre-seeded with a workspace and user (`tim@apple.dev` / `tim@apple.dev`), so you can start developing immediately without any manual setup.
|
||||
|
||||
### Authentication
|
||||
|
||||
Connect your app to the local server using OAuth:
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Authenticate via OAuth (opens browser)
|
||||
yarn twenty remote add --local
|
||||
yarn twenty app:dev
|
||||
```
|
||||
|
||||
The scaffolder supports two modes for controlling which example files are included:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
title: خادم MCP
|
||||
title: خادم MCP},{
|
||||
description: اربط مساعدي الذكاء الاصطناعي بمساحة عمل Twenty الخاصة بك باستخدام بروتوكول سياق النموذج.
|
||||
---
|
||||
|
||||
@@ -87,11 +87,11 @@ MCP حاليًا في مرحلة **ألفا** وهو متاح فقط في بعض
|
||||
| **Cursor** | `.cursor/mcp.json` ضمن مشروعك، أو `~/.cursor/mcp.json` عالميًا |
|
||||
| **ChatGPT** | فعِّل وضع المطوّر في **Settings > Apps & Connectors > Advanced settings**، ثم استخدم **Create** في **Settings > Apps & Connectors** لإضافة خادم MCP |
|
||||
|
||||
### 2. الاتصال
|
||||
### ٢. الاتصال
|
||||
|
||||
أعِد تشغيل عميل MCP لديك (أو أعد تحميل ملف الإعداد). إذا كنت تستخدم OAuth فسيتم توجيهك إلى Twenty لتفويض الوصول. إذا كنت تستخدم مفتاح API فسيكون الاتصال فوريًا.
|
||||
|
||||
### 3. ابدأ باستخدامه
|
||||
### ٣. ابدأ باستخدامه
|
||||
|
||||
اطلب من مساعد الذكاء الاصطناعي التفاعل مع نظام إدارة علاقات العملاء (CRM) لديك:
|
||||
|
||||
|
||||
@@ -0,0 +1,169 @@
|
||||
# Twenty Frontend — Dead Code & Duplication Report
|
||||
|
||||
## 1. Unused Code (safe to delete)
|
||||
|
||||
### 1.1 Unused Hooks
|
||||
|
||||
| Hook | File | Notes |
|
||||
|------|------|-------|
|
||||
| `useWorkflowRunUnsafe` | `modules/workflow/hooks/useWorkflowRunUnsafe.ts` | Never imported. Duplicate of `useWorkflowRun` without schema validation. |
|
||||
| `useGetViewById` | `modules/views/hooks/useGetViewById.ts` | Never imported. `useViewById` is used instead. |
|
||||
| `useCreateViewFieldGroup` | `modules/views/hooks/useCreateViewFieldGroup.ts` | Never imported. CRUD done via `usePerformViewFieldGroupAPIPersist`. |
|
||||
| `useDeleteViewFieldGroup` | `modules/views/hooks/useDeleteViewFieldGroup.ts` | Same as above. |
|
||||
| `useUpdateViewFieldGroup` | `modules/views/hooks/useUpdateViewFieldGroup.ts` | Same as above. |
|
||||
| `useCreateManyViewFieldGroups` | `modules/views/hooks/useCreateManyViewFieldGroups.ts` | Same as above. |
|
||||
| `useMoveViewColumns` | `modules/views/hooks/useMoveViewColumns.ts` | Only imported by its own test file — no production usage. |
|
||||
|
||||
### 1.2 Unused Components
|
||||
|
||||
| Component | File | Notes |
|
||||
|-----------|------|-------|
|
||||
| `SettingsSummaryCard` | `modules/settings/components/SettingsSummaryCard.tsx` | Never imported anywhere. |
|
||||
|
||||
### 1.3 Unused Utilities
|
||||
|
||||
| Export | File | Notes |
|
||||
|--------|------|-------|
|
||||
| `createEventContext` + `EventContext` | `utils/createEventContext.ts` | Entire file is unused — zero imports. |
|
||||
|
||||
### 1.4 Filename Typo
|
||||
|
||||
| File | Issue |
|
||||
|------|-------|
|
||||
| `modules/views/hooks/useOpenCreateViewDropown.ts` | "Dropown" should be "Dropdown". The exported hook is correctly named `useOpenCreateViewDropdown`. |
|
||||
|
||||
---
|
||||
|
||||
## 2. Duplicated Logic
|
||||
|
||||
### 2.1 Search/filter reimplementations — **Low effort, High impact**
|
||||
|
||||
A central `filterBySearchQuery` utility exists in `utils/filterBySearchQuery.ts` with proper diacritic normalization, but several places reimplement search inline with plain `.toLowerCase().includes()`:
|
||||
|
||||
| File | Inline pattern |
|
||||
|------|----------------|
|
||||
| `modules/workflow/workflow-trigger/components/WorkflowEditTriggerDatabaseEventForm.tsx` | `option.label.toLowerCase().includes(searchValue.toLowerCase())` |
|
||||
| `modules/workflow/workflow-variables/hooks/useVariableDropdown.ts` | `value.label?.toLowerCase().includes(searchInputValue.toLowerCase())` |
|
||||
| `modules/settings/roles/.../SettingsRolePermissionsObjectLevelRecordLevelPermissionMeValueSelect.tsx` | `item.label.toLowerCase().includes(searchInput.toLowerCase())` |
|
||||
| `pages/settings/ai/components/SettingsAIModelsTab.tsx` | Multi-field inline search |
|
||||
|
||||
**Fix:** Replace with `filterBySearchQuery` to get consistent diacritic-aware search for free.
|
||||
|
||||
### 2.2 `SelectInput` vs `SubMatchingSelectInput` — **Medium effort, High impact**
|
||||
|
||||
Both components in `modules/ui/input/components/SelectInput.tsx` and `modules/spreadsheet-import/.../SubMatchingSelectInput.tsx` have nearly identical logic:
|
||||
- Same `optionsToSelect` memo with `normalizeSearchText`
|
||||
- Same `optionsInDropDown` ordering (selected first)
|
||||
- Same `handleOptionChange` pattern
|
||||
|
||||
**Fix:** Extract a shared `useSelectWithSearch(options, selectedOption)` hook.
|
||||
|
||||
### 2.3 `objectMetadataItemsState` + `.find()` — **Medium effort, High impact**
|
||||
|
||||
45+ files read `objectMetadataItemsState` and then do `.find(item => item.nameSingular === ...)` or similar lookups. Selectors like `objectMetadataItemFamilySelector` and `objectMetadataItemsByNameSingularMapSelector` already exist but are underused.
|
||||
|
||||
**Fix:** Introduce a `useObjectMetadataItemByName(name, 'singular' | 'plural')` hook and migrate call sites.
|
||||
|
||||
### 2.4 Object metadata sorting — **Low effort, Medium impact**
|
||||
|
||||
`a.labelSingular.localeCompare(b.labelSingular)` appears in 5+ places across hooks and utils. Same for `labelPlural`.
|
||||
|
||||
**Fix:** Add a shared `sortObjectMetadataByLabel(key)` comparator.
|
||||
|
||||
### 2.5 `objectMetadataItemsByNamePluralMapSelector` / `...SingularMapSelector` — **Low effort, Medium impact**
|
||||
|
||||
These two selectors are identical except for the map key (`namePlural` vs `nameSingular`).
|
||||
|
||||
**Fix:** Create a factory `createObjectMetadataItemsMapSelector(key)` and derive both from it.
|
||||
|
||||
### 2.6 Chart dropdown components — **Medium effort, Medium impact**
|
||||
|
||||
7 chart dropdown components share the same structure: `DropdownMenuSearchInput` + `filterBySearchQuery` + `DropdownMenuItemsContainer` + item rendering.
|
||||
|
||||
Files: `ChartGroupByFieldSelectionDropdownContentBase`, `ChartDataSourceDropdownContent`, `ChartRatioOptionValueSelectionDropdownContent`, `ChartAggregateOperationSelectionDropdownContent`, `ChartColorSelectionDropdownContent`, `ChartFieldSelectionForAggregateOperationDropdownContent`, `ChartGroupByFieldSelectionRelationFieldView`.
|
||||
|
||||
**Fix:** Extract a `ChartSettingsDropdown` wrapper that handles search + layout and accepts items via render prop.
|
||||
|
||||
### 2.7 Settings table row components — **Low effort, Medium impact**
|
||||
|
||||
6 settings table row components duplicate nearly identical styled components (`StyledNameContainer`, `StyledNameLabel`, `StyledInactiveLabel`):
|
||||
|
||||
- `SettingsObjectItemTableRow`
|
||||
- `SettingsObjectFieldItemTableRow`
|
||||
- `SettingsObjectRelationItemTableRow`
|
||||
- `SettingsRolePermissionsObjectLevelObjectFieldPermissionTableRow`
|
||||
- `SettingsRolePermissionsObjectLevelTableRow`
|
||||
- `SettingsRoleAssignmentTableRow`
|
||||
|
||||
**Fix:** Extract shared styled components into `modules/settings/components/SettingsTableRowPrimitives.tsx`.
|
||||
|
||||
### 2.8 Date formatting scattered across 5+ files — **High effort, Medium impact**
|
||||
|
||||
Date utilities are spread across:
|
||||
- `utils/date-utils.ts`
|
||||
- `utils/format/formatDate.ts`
|
||||
- `utils/string/formatDateString.ts`
|
||||
- `utils/string/formatDateTimeString.ts`
|
||||
- `utils/dates/formatZonedDateTimeDatePart.ts` / `formatZonedDateTimeTimePart.ts`
|
||||
|
||||
**Fix:** Consolidate under `utils/dates/` with clear responsibilities (parse, format, relative display).
|
||||
|
||||
---
|
||||
|
||||
## 3. Repeated Inline Patterns
|
||||
|
||||
### 3.1 Text truncation CSS — ~50 occurrences
|
||||
|
||||
```css
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
```
|
||||
|
||||
`EllipsisDisplay` exists in `modules/ui/field/display/components/EllipsisDisplay.tsx` but is rarely used.
|
||||
|
||||
**Fix:** Add a `truncateTextMixin` in shared styles. Use it in styled components instead of repeating these 3 lines.
|
||||
|
||||
### 3.2 Flex centering CSS — ~100+ occurrences
|
||||
|
||||
```css
|
||||
display: flex;
|
||||
align-items: center;
|
||||
/* optional: justify-content: center */
|
||||
```
|
||||
|
||||
**Fix:** Add `flexRowCenter` / `flexCenter` CSS mixins.
|
||||
|
||||
### 3.3 `e.stopPropagation()` wrapper — ~40 occurrences
|
||||
|
||||
`onClick={(e) => { e.stopPropagation(); ... }}` appears throughout.
|
||||
|
||||
A `StopPropagationContainer` exists in `modules/object-record/record-board/record-board-card/components/` but is barely reused.
|
||||
|
||||
**Fix:** Move `StopPropagationContainer` to a shared location and use it more broadly. Or add a `withStopPropagation(handler)` utility.
|
||||
|
||||
---
|
||||
|
||||
## 4. Priority Matrix
|
||||
|
||||
| # | Item | Effort | Impact | Type |
|
||||
|---|------|--------|--------|------|
|
||||
| 1 | Delete 7 unused hooks | **Very Low** | Medium | Dead code |
|
||||
| 2 | Delete `SettingsSummaryCard` | **Very Low** | Low | Dead code |
|
||||
| 3 | Delete `createEventContext.ts` | **Very Low** | Low | Dead code |
|
||||
| 4 | Fix `useOpenCreateViewDropown` filename typo | **Very Low** | Low | Hygiene |
|
||||
| 5 | Replace inline search filters with `filterBySearchQuery` | **Low** | High | Dedup |
|
||||
| 6 | Add `truncateTextMixin` for ellipsis CSS | **Low** | High | Dedup |
|
||||
| 7 | Extract shared settings table row styled components | **Low** | Medium | Dedup |
|
||||
| 8 | Create `objectMetadataItemsMapSelector` factory | **Low** | Medium | Dedup |
|
||||
| 9 | Add shared `sortObjectMetadataByLabel` comparator | **Low** | Medium | Dedup |
|
||||
| 10 | Extract `useSelectWithSearch` from SelectInput/SubMatchingSelectInput | **Medium** | High | Dedup |
|
||||
| 11 | Introduce `useObjectMetadataItemByName` hook | **Medium** | High | Dedup |
|
||||
| 12 | Extract shared chart dropdown wrapper | **Medium** | Medium | Dedup |
|
||||
| 13 | Consolidate date formatting utilities | **High** | Medium | Dedup |
|
||||
|
||||
Items 1–4 are pure low-hanging fruit — just deletions and a rename, no risk of regressions.
|
||||
|
||||
Items 5–9 are small refactors that pay off quickly across many files.
|
||||
|
||||
Items 10–13 are larger but high-value unifications.
|
||||
@@ -23,7 +23,7 @@ module.exports = {
|
||||
'./src/modules/databases/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/analytics/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/object-metadata/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/navigation-menu-item/**/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/navigation-menu-item/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/command-menu-item/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/attachments/graphql/**/*.{ts,tsx}',
|
||||
'./src/modules/file/graphql/**/*.{ts,tsx}',
|
||||
@@ -42,7 +42,11 @@ module.exports = {
|
||||
overwrite: true,
|
||||
generates: {
|
||||
'./src/generated-metadata/graphql.ts': {
|
||||
plugins: ['typescript', 'typescript-operations', 'typed-document-node'],
|
||||
plugins: [
|
||||
'typescript',
|
||||
'typescript-operations',
|
||||
'typed-document-node',
|
||||
],
|
||||
config: {
|
||||
skipTypename: false,
|
||||
scalars: {
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Voeg item by"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Alle objekte"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Alles reg!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Is jy seker jy wil hierdie rekords vernietig? Hulle sal nie meer herstelbaar wees nie."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Is jy seker jy wil hierdie rekord vernietig? Dit kan nie meer herstel word nie."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Is jy seker jy wil hierdie rekords herstel?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Is jy seker jy wil hierdie rekord herstel?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Oplopend"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Vra AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Kan nie skandeer nie? Kopieer die"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Kanselleer"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Kanselleer uitgawe"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Vou vouer toe"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Pasmaak"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Donker"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Paneelbord suksesvol gedupliseer"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Paneelborde"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "verwyder"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "verwyder"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Verwyder veld"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Verwyder vouer"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Vernietig {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Vernietig rekords"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Los lêer hier..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Wysig velde"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Kon nie paneelbord dupliseer nie"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Kon nie prent verwyder nie"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Kon nie werke herprobeer nie. Probeer asseblief later weer."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Gunstelinge"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Vloei"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Lêers"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Uitleg"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Lyn grafiek"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Skakel na knipbord gekopieer"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Skuif links"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nuwe Veld"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nuwe rekord"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Geen geldeenheid"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Geen Lêers Nie"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Geen vouer"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Geen Resultate"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Geen resultate gevind nie"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Geen kiesveld nie"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objek"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objek"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objekte"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Oopgemaak"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Ander"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Oorsig"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Vernietig rekord permanent"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Vernietig rekord permanent"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Vernietig rekords permanent"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Vernietig rekords permanent"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Vernietig werkstroom permanent"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Vernietig werkstroomme permanent"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "rekord"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Rekord"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Afstand"
|
||||
msgid "Remove"
|
||||
msgstr "Verwyder"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Verwyder uit gunstelinge"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Verwyder veranderlike"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Hernoem"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Herstel rekord"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Herstel rekord"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Herstel rekords"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Herstel rekords"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Resultaat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultate"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Saterdag"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Stoor"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Stoor as nuwe aansig"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Stoor Paneelbord"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Soek 'n veld..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Soek 'n tipe"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Soek vir 'n objek"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Soek kleure"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Soek rekords"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Kies 'n veld om in hierdie widget te vertoon"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Stel as verstek"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Instelling van jou databasis..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Sommige"
|
||||
msgid "Some folders"
|
||||
msgstr "Sommige vouers"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Hierdie aksie kan nie ongedaan gemaak word nie. Dit sal permanent jou li
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Hierdie aksie kan nie ongedaan gemaak word nie. Dit sal jou twee-faktor-verifikasiemetode permanent terugstel. <0/> Tik asseblief jou e-pos in om te bevestig."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Tik enigiets..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "aansig"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Aansig"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Sien Vorige KI-kletse"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Werksvloeie"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Werkruimte"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "إضافة عنصر"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "كل الكائنات"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "كل شيء جاهز!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "هل أنت متأكد أنك تريد إتلاف هذه السجلات؟ لن تكون قابلة للاسترداد بعد الآن."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "هل أنت متأكد أنك تريد تدمير هذا السجل؟ لن يمكن استرجاعه بعد الآن."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "هل أنت متأكد أنك تريد استعادة هذه السجلات؟"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "هل أنت متأكد أنك تريد استعادة هذا السجل؟"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "تصاعدي"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "اسأل الذكاء الاصطناعي"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "هل لا يمكنك المسح؟ انسخ الـ"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "إلغاء"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "إلغاء التعديل"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "طي المجلد"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "تخصيص"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "داكن"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "تم تكرار لوحة القيادة بنجاح"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "لوحات القيادة"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "بيانات"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "حذف"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "حذف"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "حذف الحقل"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "حذف المجلد"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "إتلاف {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "إتلاف السجلات"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "أسقط الملف هنا..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "تحرير الحقول"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "فشل في تكرار لوحة القيادة"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "فشل في إزالة الصورة"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "فشل في إعادة محاولة الوظائف. يُرجى المحاولة مرة أخرى لاحقًا."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "المفضلة"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "تدفق"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "مجلدات"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "التخطيط"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "الرسم البياني الخطي"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "تم نسخ الرابط إلى الحافظة"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "نقل إلى اليسار"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "سجل جديد"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "لا توجد عملة"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "لا توجد ملفات"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "لا يوجد مجلد"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "لا توجد نتائج"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "لم يتم العثور على نتائج"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "لا حقل اختيار"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "كائن"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "كائن"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "كائنات"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "تم الفتح"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "أخرى"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "نظرة عامة"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "تدمير السجل نهائيًا"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "اتلاف السجل نهائيًا"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "تدمير السجلات نهائيًا"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "إتلاف السجلات نهائيًا"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "تدمير سير العمل نهائيًا"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "تدمير عمليات العمل نهائيًا"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "السجل"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "السجل"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "عن بعد"
|
||||
msgid "Remove"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "إزالة المتغير"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "إعادة التسمية"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "استعادة السجل"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "استعادة السجل"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "استعادة السجلات"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "استعادة السجلات"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "النتيجة"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "\\\\"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "السبت"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "حفظ"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "احفظ كعرض جديد"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "حفظ لوحة القيادة"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "ابحث عن حقل..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "ابحث عن نوع"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "ابحث عن كائن"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "ابحث عن الألوان"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "اختر حقلاً لعرضه في هذه الأداة"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "تعيين كافتراضي"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "إعداد قاعدة البيانات الخاصة بك..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "بعض"
|
||||
msgid "Some folders"
|
||||
msgstr "بعض المجلدات"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "لا يمكن التراجع عن هذا الإجراء. سيؤدي ذل
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "لا يمكن التراجع عن هذا الإجراء. سيؤدي ذلك إلى إعادة تعيين طريقة المصادقة الثنائية الخاصة بك بشكل دائم. <0/> الرجاء إدخال بريدك الإلكتروني للتأكيد."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "اكتب أي شيء..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "عرض"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "عرض"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "عرض الذكاءات الاصطناعية السابقة"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15065,7 +15032,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15129,7 +15095,7 @@ msgstr "سير العمل"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "مساحة العمل"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Afegeix element"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Tots els objectes"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Tot a punt!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Esteu segur que voleu destruir aquests registres? Ja no seran recuperables."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Esteu segur que voleu destruir aquest registre? No es podrà recuperar més endavant."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Esteu segur que voleu restaurar aquests registres?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Esteu segur que voleu restaurar aquest registre?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Ascendent"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Pregunta a l'IA"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "No pots escanejar? Copia la"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel·la"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Cancel·la l'edició"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Replega la carpeta"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Personalització"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Fosc"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Quadre de comandament duplicat correctament"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Taulers de comandament"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Dades"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "elimina"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "elimina"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Esborra camp"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Elimina la carpeta"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Destruir {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Destruir registres"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Deixa el fitxer aquí..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Edita camps"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "No s'ha pogut duplicar el quadre de comandament"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "No s'ha pogut eliminar la imatge"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Error en reintentar feines. Torneu-ho a provar més tard."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Preferits"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Flux"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Carpetes"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Disseny"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Gràfic de línies"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Enllaç copiat al porta-retalls"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Moure a l'esquerra"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nou camp"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nou registre"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Sense moneda"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Sense fitxers"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Sense carpeta"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Cap resultat"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "No s'han trobat resultats"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Sense camp de selecció"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objecte"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objecte"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objectes"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Obert"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Altres"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Visió general"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Destruir permanentment el registre"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Destruir permanentment el registre"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Destruir permanentment els registres"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Destruir permanentment registres"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Destruir permanentment el flux de treball"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Destruir permanentment els workflows"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "registre"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registre"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Remote"
|
||||
msgid "Remove"
|
||||
msgstr "Elimina"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Elimina dels preferits"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Elimina la variable"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Canvia el nom"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Restaura el registre"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Restaura el Registre"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Restaurar registres"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Restaura Registres"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultats"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Dissabte"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Desa"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Desa com a nova vista"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Desa el quadre de comandament"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Cerca un camp..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Cerca un tipus"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Cerca un objecte"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Cerca colors"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Cerca enregistraments"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Seleccioneu un camp per mostrar en aquest giny"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Estableix com a predeterminat"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Configurant la teva base de dades..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Alguns"
|
||||
msgid "Some folders"
|
||||
msgstr "Algunes carpetes"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Aquesta acció no es pot desfer. Això eliminarà permanentment la teva
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Aquesta acció no es pot desfer. Això restablirà permanentment el teu mètode d'autenticació de dos factors. <0/> Si us plau, escriu el teu correu electrònic per confirmar."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Teclegeu qualsevol cosa..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "vista"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Vista"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Veure els xats d'IA anteriors"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Fluxos de treball"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Espai de treball"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Přidat položku"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Všechny objekty"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Vše hotovo!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Jste si jistí, že chcete zničit tyto záznamy? Nebude možné je obnovit."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Opravdu chcete zničit tento záznam? Nebude možné jej obnovit."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Opravdu chcete obnovit tyto záznamy?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Opravdu chcete obnovit tento záznam?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Vzestupně"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Zeptejte se AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Nemůžete skenovat? Zkopírujte"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Storno"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Zrušit edici"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Sbalit složku"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Přizpůsobení"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Tmavý"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Ovládací panel byl úspěšně duplikován"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Panely"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "smazat"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "smazat"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Smazat pole"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Smazat složku"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Zničit {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Zničit záznamy"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Přetáhněte soubor sem..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Upravit pole"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Nepodařilo se duplikovat ovládací panel"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Nepodařilo se odstranit obrázek"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Nepodařilo se znovu spustit úlohy. Prosím, zkuste to znovu později."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Oblíbené"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Tok"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Složky"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Rozvržení"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Liniový graf"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Odkaz byl zkopírován do schránky"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Posunout doleva"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nové pole"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nový záznam"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Žádná měna"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Žádné soubory"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Žádná složka"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Žádné výsledky"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nenalezeny žádné výsledky"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Žádné výběrové pole"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objekty"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Otevřený"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Ostatní"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Přehled"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Trvale zničit záznam"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Trvale zničit záznam"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Trvale zničit záznamy"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Trvale zničit záznamy"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Trvale zničit workflow"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Trvale zničit workflody"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "záznam"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Záznam"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Vzdálený"
|
||||
msgid "Remove"
|
||||
msgstr "Odstranit"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Odebrat z oblíbených"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Odstranit proměnnou"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Přejmenovat"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Obnovit záznam"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Obnovit záznam"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Obnovit záznamy"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Obnovit záznamy"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Výsledek"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Výsledky"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Sobota"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Uložit"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Uložit jako nové zobrazení"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Uložit panel"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Hledat ve sloupci..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Hledat typ"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Hledat objekt"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Hledat barvy"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Hledání záznamů"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Vyberte pole, které se má v tomto widgetu zobrazit"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Nastavit jako výchozí"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Nastavení vaší databáze..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Některé"
|
||||
msgid "Some folders"
|
||||
msgstr "Některé složky"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Tato akce je nevratná. Tímto bude vaše členství v tomto pracovním
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Tuto akci nelze vrátit zpět. Tímto dojde k trvalému resetování vaší metody dvoufaktorového ověřování. <0/> Pro potvrzení zadejte svůj e-mail."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Napište cokoli..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "pohled"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Pohled"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Zobrazit předchozí AI diskuse"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Pracovní postupy"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Pracovní prostor"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Tilføj element"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Alle objekter"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Alt klar!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Er du sikker på, at du vil ødelægge disse optegnelser? De kan ikke gendannes længere."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Er du sikker på, at du vil ødelægge denne post? Den kan ikke gendannes længere."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Er du sikker på, at du vil gendanne disse poster?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Er du sikker på, at du vil gendanne denne post?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Stigende"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Spørg AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Kan ikke scanne? Kopier"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annuller"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Annuller udgave"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Fold mappe sammen"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Tilpasning"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Mørk"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Dashboard duplikeret med succes"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Dashboards"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "slet"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "slet"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Slet felt"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Slet mappe"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Ødelæg {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Ødelæg records"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Slip fil her..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Rediger felter"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Kunne ikke duplikere dashboard"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Kunne ikke fjerne billede"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Kunne ikke forsøge jobs igen. Prøv venligst igen senere."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favoritter"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Strøm"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Mapper"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Linje Diagram"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Link kopieret til udklipsholder"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Flyt til venstre"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nyt felt"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Ny post"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Ingen valuta"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Ingen filer"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Ingen mappe"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Ingen resultater"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Ingen resultater fundet"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Ingen vælg felt"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objekter"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Åbnet"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Andet"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Oversigt"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Permanent slet post"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Permanent slet post"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Permanent slet poster"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Permanent slet poster"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Permanent ødelægge workflow"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Permanent slet workflows"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "post"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registrering"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Fjernforbindelse"
|
||||
msgid "Remove"
|
||||
msgstr "Fjern"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Fjern fra favoritter"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Fjern variabel"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Omdøb"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Gendan post"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Gendan post"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Gendan poster"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Gendan poster"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultater"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Lørdag"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Gem"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Gem som ny visning"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Gem dashboard"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Søg i et felt..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Søg efter en type"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Søg efter et objekt"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Søg farver"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Søg poster"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Vælg et felt, der skal vises i denne widget"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Indstil som standard"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Opsætning af din database..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Nogle"
|
||||
msgid "Some folders"
|
||||
msgstr "Nogle mapper"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13514,14 +13483,13 @@ msgstr "Denne handling kan ikke fortrydes. Dette vil permanent fjerne dit medlem
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Denne handling kan ikke fortrydes. Dette vil permanent nulstille din tofaktorgodkendelsesmetode. <0/> Indtast venligst din e-mail for at bekræfte."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14048,7 +14016,7 @@ msgid "Type anything..."
|
||||
msgstr "Skriv noget..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14227,7 +14195,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14637,10 +14605,10 @@ msgid "view"
|
||||
msgstr "visning"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Visning"
|
||||
|
||||
@@ -14739,7 +14707,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Se tidligere AI-chats"
|
||||
@@ -14775,7 +14742,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15069,7 +15036,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15133,7 +15099,7 @@ msgstr "Arbejdsgange"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Arbejdsområde"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Element hinzufügen"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Alle Objekte"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Alles bereit!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Sind Sie sicher, dass Sie diese Datensätze zerstören möchten? Sie können nicht wiederhergestellt werden."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Sind Sie sicher, dass Sie diesen Datensatz zerstören möchten? Er kann nicht wiederhergestellt werden."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Sind Sie sicher, dass Sie diese Datensätze wiederherstellen möchten?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Sind Sie sicher, dass Sie diesen Datensatz wiederherstellen möchten?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Aufsteigend"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "AI fragen"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Kann nicht gescannt werden? Kopieren Sie das"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Edition abbrechen"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Ordner einklappen"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Anpassung"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Dunkel"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Dashboard erfolgreich dupliziert"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Dashboards"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Daten"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "löschen"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "löschen"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Feld löschen"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Ordner löschen"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Zerstören {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Datensätze zerstören"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Datei hier ablegen..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Felder bearbeiten"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Duplizieren des Dashboards fehlgeschlagen"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Bild konnte nicht entfernt werden"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Aufgaben konnten nicht erneut versucht werden. Bitte versuchen Sie es später noch einmal."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favoriten"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Fluss"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Ordner"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Liniendiagramm"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Link in die Zwischenablage kopiert"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Nach links verschieben"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Neues Feld"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Neuer Datensatz"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Keine Währung"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Keine Dateien"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Kein Ordner"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Keine Ergebnisse"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Keine Ergebnisse gefunden"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Kein Auswahlfeld"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objekte"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Geöffnet"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Andere"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Übersicht"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Datensatz dauerhaft löschen"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Datensatz dauerhaft zerstören"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Datensätze dauerhaft vernichten"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Datensätze dauerhaft zerstören"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Workflows dauerhaft vernichten"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Workflows dauerhaft vernichten"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "Datensatz"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Datensatz"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Remote"
|
||||
msgid "Remove"
|
||||
msgstr "Entfernen"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Aus Favoriten entfernen"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Variable entfernen"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Umbenennen"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Datensatz wiederherstellen"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Datensatz wiederherstellen"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Datensätze wiederherstellen"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Datensätze wiederherstellen"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Ergebnis"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Ergebnisse"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Samstag"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Als neue Ansicht speichern"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Dashboard speichern"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Feld suchen..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Einen Typ suchen"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Ein Objekt suchen"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Farben suchen"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Datensätze suchen"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Wählen Sie ein Feld aus, das in diesem Widget angezeigt werden soll"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Als Standard festlegen"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Einrichten Ihrer Datenbank..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Einige"
|
||||
msgid "Some folders"
|
||||
msgstr "Einige Ordner"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihre M
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Diese Aktion kann nicht rückgängig gemacht werden. Dadurch wird Ihre Zwei-Faktor-Authentifizierung dauerhaft zurückgesetzt. <0/> Bitte geben Sie zur Bestätigung Ihre E-Mail ein."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Geben Sie irgendetwas ein..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "ansicht"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Ansicht"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vorherige KI-Chats anzeigen"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Arbeitsbereich"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Προσθήκη στοιχείου"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Όλα τα Αντικείμενα"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Όλα έτοιμα!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Είστε βέβαιοι ότι θέλετε να καταστρέψετε αυτές τις εγγραφές; Δεν θα είναι πλέον ανακτήσιμες."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Είστε σίγουροι ότι θέλετε να καταστρέψετε αυτή την εγγραφή; Δεν μπορεί να ανακτηθεί πλέον."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτές τις εγγραφές;"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτή την εγγραφή;"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Αύξουσα"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Ρώτησε την AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Δεν μπορείτε να σαρώσετε; Αντιγράψτε το
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Ακύρωση"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Ακύρωση Έκδοσης"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Σύμπτυξη φακέλου"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Προσαρμογή"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Σκοτεινό"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Ο πίνακας ελέγχου αντιγράφηκε με επιτυχία"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Πίνακες Ελέγχου"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Δεδομένα"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "διαγραφή"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "διαγραφή"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Διαγραφή πεδίου"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Διαγραφή φακέλου"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Καταστροφή {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Καταστροφή εγγραφών"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Σύρετε το αρχείο εδώ..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Επεξεργασία πεδίων"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Αποτυχία αντιγραφής του πίνακα ελέγχου"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Αποτυχία αφαίρεσης εικόνας"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Αποτυχία επαναποστολής εργασιών. Παρακαλώ δοκιμάστε ξανά αργότερα."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Αγαπημένα"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Ροή"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Φάκελοι"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Διάταξη"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Διάγραμμα γραμμής"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Μετακίνηση αριστερά"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Νέα εγγραφή"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Χωρίς νόμισμα"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Χωρίς αρχεία"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Κανένας φάκελος"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Χωρίς αποτελέσματα"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Δεν βρέθηκαν αποτελέσματα"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Χωρίς πεδίο Επιλογής"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "αντικείμενο"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Αντικείμενο"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Αντικείμενα"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Ανοίχτηκε"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Άλλο"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Επισκόπηση"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Καταστροφή της εγγραφής οριστικά"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Καταστροφή της εγγραφής οριστικά"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Καταστροφή των εγγραφών οριστικά"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Καταστρέψτε μόνιμα τις εγγραφές"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Καταστροφή της διαδικασίας οριστικά"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Καταστροφή των workflows οριστικά"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "εγγραφή"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Εγγραφή"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Απομακρυσμένα"
|
||||
msgid "Remove"
|
||||
msgstr "Αφαίρεση"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Αφαίρεση από τα αγαπημένα"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Αφαίρεση μεταβλητής"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Μετονομασία"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Επαναφορά εγγραφής"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Επαναφορά εγγραφής"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Επαναφορά εγγραφών"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Επαναφορά εγγραφών"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Αποτέλεσμα"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Αποτελέσματα"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Σάββατο"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Αποθήκευση"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Αποθήκευση ως νέα προβολή"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Αποθήκευση πίνακα ελέγχου"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Αναζήτηση πεδίου..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Αναζήτηση τύπου"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Αναζήτηση αντικειμένου"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Αναζήτηση χρωμάτων"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Αναζήτηση εγγραφών"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Επιλέξτε ένα πεδίο για εμφάνιση σε αυτό το γραφικό στοιχείο"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Ορισμός ως προεπιλογή"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Ρύθμιση της βάσης δεδομένων σας..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12669,11 +12643,6 @@ msgstr "Μερικά"
|
||||
msgid "Some folders"
|
||||
msgstr "Ορισμένοι φάκελοι"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13132,10 +13101,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13516,14 +13485,13 @@ msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Αυτό θα επαναφέρει μόνιμα τη μέθοδο ελέγχου ταυτότητας δύο παραγόντων σας. <0/> Παρακαλώ πληκτρολογήστε το email σας για επιβεβαίωση."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14050,7 +14018,7 @@ msgid "Type anything..."
|
||||
msgstr "Πληκτρολογήστε οτιδήποτε..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14229,7 +14197,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14639,10 +14607,10 @@ msgid "view"
|
||||
msgstr "προβολή"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Προβολή"
|
||||
|
||||
@@ -14741,7 +14709,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Εμφάνιση Προηγούμενων Συνομιλιών AI"
|
||||
@@ -14777,7 +14744,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15071,7 +15038,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15135,7 +15101,7 @@ msgstr "Ροές Εργασίας"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Περιοχή Εργασίας"
|
||||
|
||||
|
||||
@@ -941,23 +941,23 @@ msgid "Add Item"
|
||||
msgstr "Add Item"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr "Add item to folder"
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr "Add menu item"
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr "Add menu item after"
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr "Add menu item before"
|
||||
|
||||
@@ -1418,7 +1418,7 @@ msgid "All Objects"
|
||||
msgstr "All Objects"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr "All objects are already in the sidebar"
|
||||
|
||||
@@ -1433,7 +1433,7 @@ msgid "All set!"
|
||||
msgstr "All set!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr "All system objects are already in the sidebar"
|
||||
|
||||
@@ -1534,7 +1534,7 @@ msgid "alphabetical"
|
||||
msgstr "alphabetical"
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr "Already in navbar"
|
||||
|
||||
@@ -1892,25 +1892,21 @@ msgstr "Are you sure you want to delete this skill? This action cannot be undone
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Are you sure you want to restore these records?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Are you sure you want to restore this record?"
|
||||
|
||||
@@ -1951,7 +1947,6 @@ msgstr "Ascending"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Ask AI"
|
||||
@@ -2559,11 +2554,13 @@ msgstr "Can't scan? Copy the"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancel"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Cancel Edition"
|
||||
@@ -2964,7 +2961,7 @@ msgid "Collapse folder"
|
||||
msgstr "Collapse folder"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr "Color"
|
||||
|
||||
@@ -3894,9 +3891,10 @@ msgid "Customization"
|
||||
msgstr "Customization"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr "Customize"
|
||||
|
||||
@@ -3967,7 +3965,6 @@ msgstr "Dark"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Dashboard duplicated successfully"
|
||||
|
||||
@@ -3981,7 +3978,7 @@ msgstr "Dashboards"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4286,7 +4283,7 @@ msgstr "delete"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4303,7 +4300,7 @@ msgstr "delete"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4390,7 +4387,7 @@ msgid "Delete field"
|
||||
msgstr "Delete field"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Delete Folder"
|
||||
|
||||
@@ -4591,7 +4588,6 @@ msgstr "Destroy {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Destroy Records"
|
||||
|
||||
@@ -4799,7 +4795,7 @@ msgid "Drop file here..."
|
||||
msgstr "Drop file here..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4931,9 +4927,9 @@ msgid "Edit Fields"
|
||||
msgstr "Edit Fields"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr "Edit folder"
|
||||
|
||||
@@ -4954,9 +4950,9 @@ msgid "Edit Layout"
|
||||
msgstr "Edit Layout"
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr "Edit link"
|
||||
|
||||
@@ -6119,13 +6115,11 @@ msgstr "Failed to delete skill"
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Failed to duplicate dashboard"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr "Failed to duplicate workflow"
|
||||
|
||||
@@ -6189,10 +6183,10 @@ msgstr "Failed to remove picture"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Failed to retry jobs. Please try again later."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
msgstr "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr "Failed to save navigation layout"
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
@@ -6309,7 +6303,7 @@ msgid "Fast Model"
|
||||
msgstr "Fast Model"
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favorites"
|
||||
|
||||
@@ -6581,8 +6575,8 @@ msgid "Flow"
|
||||
msgstr "Flow"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr "Folder"
|
||||
|
||||
@@ -6592,8 +6586,8 @@ msgid "Folder name"
|
||||
msgstr "Folder name"
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Folders"
|
||||
|
||||
@@ -8023,7 +8017,7 @@ msgid "Layout"
|
||||
msgstr "Layout"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr "Layout customization"
|
||||
|
||||
@@ -8138,8 +8132,8 @@ msgid "Line Chart"
|
||||
msgstr "Line Chart"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
@@ -8155,12 +8149,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Link copied to clipboard"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr "Link label"
|
||||
|
||||
@@ -8799,19 +8793,19 @@ msgid "Most installed version"
|
||||
msgstr "Most installed version"
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr "Move down"
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Move left"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8823,12 +8817,12 @@ msgid "Move to a folder"
|
||||
msgstr "Move to a folder"
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr "Move to folder"
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr "Move up"
|
||||
|
||||
@@ -9074,9 +9068,9 @@ msgid "New Field"
|
||||
msgstr "New Field"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr "New folder"
|
||||
|
||||
@@ -9116,11 +9110,11 @@ msgid "New record"
|
||||
msgstr "New record"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr "New sidebar item"
|
||||
|
||||
@@ -9307,7 +9301,7 @@ msgid "No currency"
|
||||
msgstr "No currency"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr "No custom views available"
|
||||
|
||||
@@ -9419,12 +9413,12 @@ msgid "No Files"
|
||||
msgstr "No Files"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "No folder"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr "No folders available"
|
||||
|
||||
@@ -9511,7 +9505,7 @@ msgid "No object found"
|
||||
msgstr "No object found"
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr "No objects with views found"
|
||||
|
||||
@@ -9588,14 +9582,14 @@ msgid "No Results"
|
||||
msgstr "No Results"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "No results found"
|
||||
|
||||
@@ -9620,12 +9614,12 @@ msgid "No Select field"
|
||||
msgstr "No Select field"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr "No system objects available"
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr "No system objects with views found"
|
||||
|
||||
@@ -9833,9 +9827,9 @@ msgstr "object"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Object"
|
||||
|
||||
@@ -9859,11 +9853,6 @@ msgstr "Object Events"
|
||||
msgid "Object ID"
|
||||
msgstr "Object ID"
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr "object permission"
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9900,9 +9889,9 @@ msgstr "objects"
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objects"
|
||||
|
||||
@@ -10082,7 +10071,7 @@ msgid "Open side panel"
|
||||
msgstr "Open side panel"
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Opened"
|
||||
|
||||
@@ -10154,7 +10143,7 @@ msgid "Organization plan"
|
||||
msgstr "Organization plan"
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr "Organize"
|
||||
|
||||
@@ -10164,9 +10153,9 @@ msgstr "Organize"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Other"
|
||||
@@ -10240,7 +10229,7 @@ msgid "Overview"
|
||||
msgstr "Overview"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr "Owner"
|
||||
|
||||
@@ -10433,8 +10422,6 @@ msgstr "Permanently destroy record"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Permanently Destroy Record"
|
||||
|
||||
@@ -10445,7 +10432,6 @@ msgstr "Permanently destroy records"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Permanently Destroy Records"
|
||||
|
||||
@@ -10459,11 +10445,6 @@ msgstr "Permanently destroy workflow"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Permanently destroy workflows"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr "permission flag"
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10972,7 +10953,7 @@ msgstr "record"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Record"
|
||||
|
||||
@@ -11148,17 +11129,15 @@ msgstr "Remote"
|
||||
msgid "Remove"
|
||||
msgstr "Remove"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
msgstr "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
msgstr "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsRowDropdownMenu.tsx
|
||||
@@ -11187,7 +11166,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Remove from favorites"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr "Remove from sidebar"
|
||||
|
||||
@@ -11234,7 +11213,7 @@ msgstr "Remove variable"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Rename"
|
||||
@@ -11375,8 +11354,6 @@ msgstr "Restore record"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Restore Record"
|
||||
|
||||
@@ -11388,8 +11365,6 @@ msgstr "Restore records"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Restore Records"
|
||||
|
||||
@@ -11405,7 +11380,7 @@ msgstr "Result"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Results"
|
||||
|
||||
@@ -11603,6 +11578,7 @@ msgstr "Saturday"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Save"
|
||||
@@ -11617,6 +11593,11 @@ msgstr "Save as new view"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Save Dashboard"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11661,8 +11642,6 @@ msgstr "Score"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11701,7 +11680,7 @@ msgid "Search a field..."
|
||||
msgstr "Search a field..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr "Search a folder..."
|
||||
|
||||
@@ -11722,8 +11701,8 @@ msgid "Search a skill..."
|
||||
msgstr "Search a skill..."
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr "Search a system object..."
|
||||
|
||||
@@ -11738,7 +11717,7 @@ msgid "Search a type"
|
||||
msgstr "Search a type"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr "Search a view..."
|
||||
|
||||
@@ -11775,8 +11754,8 @@ msgstr "Search an object"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr "Search an object..."
|
||||
|
||||
@@ -11800,7 +11779,7 @@ msgid "Search colors"
|
||||
msgstr "Search colors"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr "Search colors..."
|
||||
|
||||
@@ -11869,7 +11848,7 @@ msgid "Search records"
|
||||
msgstr "Search records"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr "Search records..."
|
||||
|
||||
@@ -12095,7 +12074,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Select a field to display in this widget"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr "Select a navigation item to edit"
|
||||
|
||||
@@ -12316,11 +12295,6 @@ msgstr "Set a default for this workspace"
|
||||
msgid "Set as default"
|
||||
msgstr "Set as default"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Set as pinned tab"
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12390,7 +12364,7 @@ msgstr "Setting up your database..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12662,11 +12636,6 @@ msgstr "Some"
|
||||
msgid "Some folders"
|
||||
msgstr "Some folders"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr "Some layout changes could not be saved"
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13125,10 +13094,10 @@ msgstr "System fields"
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr "System objects"
|
||||
|
||||
@@ -13509,14 +13478,13 @@ msgstr "This action cannot be undone. This will permanently remove your membersh
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
msgstr "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
|
||||
@@ -14043,7 +14011,7 @@ msgid "Type anything..."
|
||||
msgstr "Type anything..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr "Type to search records"
|
||||
|
||||
@@ -14222,7 +14190,7 @@ msgstr "Unordered list with bullets"
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14632,10 +14600,10 @@ msgid "view"
|
||||
msgstr "view"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "View"
|
||||
|
||||
@@ -14734,7 +14702,6 @@ msgstr "View marketplace page"
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "View Previous AI Chats"
|
||||
@@ -14770,7 +14737,7 @@ msgid "View workspace activity logs"
|
||||
msgstr "View workspace activity logs"
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr "Views"
|
||||
|
||||
@@ -15064,7 +15031,6 @@ msgstr "Workflow agents"
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr "Workflow duplicated successfully"
|
||||
|
||||
@@ -15128,7 +15094,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Workspace"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Agregar elemento"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Todos los objetos"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "¡Todo listo!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "¿Está seguro de que desea destruir estos registros? Ya no serán recuperables."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "¿Está seguro de que desea destruir este registro? Ya no se podrá recuperar."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "¿Está seguro de que desea restaurar estos registros?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "¿Está seguro de que desea restaurar este registro?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Ascendente"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Preguntar a IA"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "¿No puedes escanear? Copia el"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Cancelar edición"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Contraer carpeta"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Personalización"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Oscuro"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Se duplicó el tablero con éxito"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Tableros"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Datos"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "eliminar"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "eliminar"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Eliminar campo"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Eliminar carpeta"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Destruir {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Destruir registros"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Suelta el archivo aquí..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Editar campos"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Error al duplicar el tablero"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr "Error al duplicar el flujo de trabajo"
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "No se pudo eliminar la imagen"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "No se pudieron reintentar los trabajos. Por favor, inténtelo de nuevo más tarde."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favoritos"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Flujo"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Carpetas"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Diseño"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Gráfico de líneas"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Enlace copiado al portapapeles"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Mover a la izquierda"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nuevo Campo"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nuevo registro"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Sin moneda"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Sin archivos"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Sin carpeta"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Sin resultados"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "No se encontraron resultados"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Sin campo de selección"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objeto"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objetos"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Abierto"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Otros"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Resumen"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Destruir registro permanentemente"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Destruir registro permanentemente"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Destruir registros de forma permanente"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Destruir registros de forma permanente"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Destruir workflow de forma permanente"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Destruir workflows de forma permanente"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "registro"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registro"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Remoto"
|
||||
msgid "Remove"
|
||||
msgstr "Eliminar"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Quitar de favoritos"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Eliminar variable"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Renombrar"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Restaurar registro"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Restaurar registro"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Restaurar registros"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Restaurar registros"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Resultado"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultados"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Sábado"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Guardar como nueva vista"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Guardar Tablero"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Buscar un campo..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Buscar un tipo"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Buscar un objeto"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Buscar colores"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Buscar registros"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Selecciona un campo para mostrar en este widget"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Establecer como predeterminado"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Configurando su base de datos..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Alguno"
|
||||
msgid "Some folders"
|
||||
msgstr "Algunas carpetas"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr "Objetos del sistema"
|
||||
|
||||
@@ -13514,14 +13483,13 @@ msgstr "Esta acción no se puede deshacer. Esto eliminará permanentemente su me
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Esta acción no se puede deshacer. Esto restablecerá permanentemente tu método de autenticación de dos factores. <0/> Escribe tu correo electrónico para confirmar."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14048,7 +14016,7 @@ msgid "Type anything..."
|
||||
msgstr "Escribe cualquier cosa..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14227,7 +14195,7 @@ msgstr "Lista sin ordenar con puntos"
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14637,10 +14605,10 @@ msgid "view"
|
||||
msgstr "vista"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Vista"
|
||||
|
||||
@@ -14739,7 +14707,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Ver chats previos de IA"
|
||||
@@ -14775,7 +14742,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15069,7 +15036,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr "Se duplicó el Workflow con éxito"
|
||||
|
||||
@@ -15133,7 +15099,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Espacio de trabajo"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Lisää kohde"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Kaikki objektit"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Valmista!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Oletko varma, että haluat tuhota nämä tietueet? Niitä ei voida enää palauttaa."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Oletko varma, että haluat tuhota tämän tietueen? Sitä ei voi enää palauttaa."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Oletko varma, että haluat palauttaa nämä tietueet?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Oletko varma, että haluat palauttaa tämän tietueen?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Nouseva"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Kysy AI:lta"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Et voi skannata? Kopioi"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Peruuta"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Peruuta muokkaus"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Supista kansio"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Mukauttaminen"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Tumma"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Hallintapaneeli monistettiin onnistuneesti"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Koontinäytöt"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "poista"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "poista"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Poista kenttä"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Poista kansio"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Tuhoa {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Tuhota tietueet"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Pudota tiedosto tähän..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Muokkaa kenttiä"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Hallintapaneelin monistaminen epäonnistui"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Kuvan poistaminen epäonnistui"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Epäonnistui uusien tehtävien yrittämisessä. Yritä myöhemmin uudelleen."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Suosikit"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Virtaus"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Kansiot"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Ulkoasu"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Viivakaavio"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Linkki kopioitu leikepöydälle"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Siirrä vasemmalle"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Uusi kenttä"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Uusi tietue"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Ei valuuttaa"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Ei tiedostoja"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Ei kansiota"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Ei tuloksia"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Tuloksia ei löytynyt"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Ei valintakenttää"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objekti"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objekti"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objektit"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Avattu"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Muu"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Yleiskatsaus"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Tuhotaan tietue pysyvästi"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Tuhota tiedosto pysyvästi"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Tuhotaan tietueet pysyvästi"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Tuhota pysyvästi tietueet"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Tuhota workflow pysyvästi"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Tuhotaan työnkulut pysyvästi"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "tietue"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Tietue"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Etä"
|
||||
msgid "Remove"
|
||||
msgstr "Poista"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Poista suosikeista"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Poista muuttuja"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Nimeä uudelleen"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Palauta tietue"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Palauta tietue"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Palauta tietueet"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Palauta tietueet"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Tulos"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Tulokset"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Lauantai"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Tallenna"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Tallenna uutena näkymänä"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Tallenna hallintapaneeli"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Etsi kenttää..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Etsi tyyppiä"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Etsi objekti"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Etsi värejä"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Hae tietueita"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Valitse kenttä, joka näytetään tässä widgetissä"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Aseta oletuksena"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Asetetaan tietokantaasi..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Jotkut"
|
||||
msgid "Some folders"
|
||||
msgstr "Jotkin kansiot"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Tätä toimintoa ei voi peruuttaa. Tämä poistaa jäsenyytesi pysyväst
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Tätä toimintoa ei voi peruuttaa. Tämä nollaa pysyvästi kaksivaiheisen todennustapasi. <0/> Vahvista kirjoittamalla sähköpostiosoitteesi."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Kirjoita jotain..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "näkymä"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Näkymä"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Näytä edelliset AI Keskustelut"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Työnkulut"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Työtila"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Ajouter un élément"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Tous les objets"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Tout est prêt !"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Êtes-vous sûr de vouloir détruire ces enregistrements ? Ils ne seront plus récupérables."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Êtes-vous sûr de vouloir détruire cet enregistrement ? Il ne pourra pas être récupéré."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Êtes-vous sûr de vouloir restaurer ces enregistrements ?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Êtes-vous sûr de vouloir restaurer cet enregistrement ?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Ascendant"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Demander à l'IA"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Impossible de scanner ? Copiez le"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Annuler l'édition"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Replier le dossier"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Personnalisation"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Sombre"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Tableau de bord dupliqué avec succès"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Tableaux de bord"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Données"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "supprimer"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "supprimer"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Supprimer le champ"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Supprimer le dossier"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Détruire {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Détruire les enregistrements"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Déposez le fichier ici..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Modifier les champs"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Échec de la duplication du tableau de bord"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Échec de la suppression de l'image"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Échec du réessai des tâches. Veuillez réessayer plus tard."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favoris"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Flux"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Dossiers"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Disposition"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Lien copié dans le presse-papiers"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Déplacer à gauche"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nouveau champ"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nouvel enregistrement"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Aucune devise"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Aucun fichier"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Aucun dossier"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Aucun résultat"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Aucun résultat trouvé"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Aucun champ de sélection"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objet"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objet"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objets"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Ouvert"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Autres"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Vue d'ensemble"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Détruire définitivement l'enregistrement"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Détruire définitivement l'enregistrement"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Détruire définitivement les enregistrements"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Détruire définitivement les enregistrements"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Détruire définitivement le workflow"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Détruire définitivement les workflows"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "enregistrement"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Enregistrer"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "À distance"
|
||||
msgid "Remove"
|
||||
msgstr "Retirer"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Retirer des favoris"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Supprimer la variable"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Renommer"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Restaurer l'enregistrement"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Restaurer l'enregistrement"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Restaurer les enregistrements"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Restaurer les enregistrements"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Résultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Résultats"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Samedi"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Enregistrer"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Enregistrer comme nouvelle vue"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Enregistrer le tableau de bord"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Rechercher un champ..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Rechercher un type"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Rechercher un objet"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Rechercher des couleurs"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Rechercher des enregistrements"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Sélectionnez un champ à afficher dans ce widget"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Définir comme défaut"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Configuration de votre base de données..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Certains"
|
||||
msgid "Some folders"
|
||||
msgstr "Certains dossiers"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13514,14 +13483,13 @@ msgstr "Cette action est irréversible. Cela supprimera définitivement votre ap
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Cette action est irréversible. Elle réinitialisera définitivement votre méthode d'authentification à deux facteurs. <0/> Veuillez saisir votre adresse e-mail pour confirmer."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14048,7 +14016,7 @@ msgid "Type anything..."
|
||||
msgstr "Tapez n'importe quoi..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14227,7 +14195,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14637,10 +14605,10 @@ msgid "view"
|
||||
msgstr "vue"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Vue"
|
||||
|
||||
@@ -14739,7 +14707,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Voir les Discussions AI Précédentes"
|
||||
@@ -14775,7 +14742,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15069,7 +15036,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15133,7 +15099,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Espace de travail"
|
||||
|
||||
|
||||
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
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "הוסף פריט"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "כל האובייקטים"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "הכול מוכן!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "האם אתה בטוח שברצונך להשמיד את הרשומות הללו? רשומות אלו לא תהיינה ניתנות לשחזור."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "האם אתה בטוח שברצונך להשמיד את הרשומה הזו? היא לא תהיה ניתנת לשחזור עוד."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "האם אתה בטוח שברצונך לשחזר את הרשומות הללו?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "האם אתה בטוח שברצונך לשחזר את הרשומה הזו?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "עולה"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "שאל את ה-AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "לא ניתן לסרוק? העתק את"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "בטל"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "בטל עריכה"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "כווץ תיקייה"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "התאמה אישית"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "כהה"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "לוח הבקרה שוכפל בהצלחה"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "לוחות בקרה"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "מידע"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "מחק"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "מחק"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "מחק שדה"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "מחק תיקייה"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "השמדת {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "השמד רשומות"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "שחרר קובץ כאן..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "עריכת שדות"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "שכפול לוח הבקרה נכשל"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "הסרת התמונה נכשלה"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "נכשל בהפעלה מחדש של עבודות. נא לנסות שוב מאוחר יותר."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "מועדפים"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "זרם"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "תיקיות"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "פריסה"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "תרשים קו"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "הקישור הועתק ללוח הגזירים"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "הזזה שמאלה"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "רשומה חדשה"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "אין מטבע"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "אין קבצים"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "אין תיקייה"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "אין תוצאות"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "לא נמצאו תוצאות"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "אין שדה בחירה"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "אובייקט"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "אובייקט"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "אובייקטים"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "נפתח"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "אחר"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "סקירה כללית"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "להשמיד לצמיתות את הרשומה"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "השמד לצמיתות את הרשומה"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "להשמיד לצמיתות את הרשומות"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "השמד לצמיתות את הרשומות"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "להשמיד לצמיתות את זרימת העבודה"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "להשמיד לצמיתות את זרימות העבודה"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "רשומה"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "רשומה"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "מרוחק"
|
||||
msgid "Remove"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "הסר משתנה"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "שנה שם"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "שחזור רשומה"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "שחזור רשומה"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "שחזור רשומות"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "שחזור רשומות"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "תוצאה"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "\\"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "יום שבת"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "שמור"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "שמור כתצוגה חדשה"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "שמור לוח בקרה"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "חפש שדה..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "חפש סוג"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "חפש אובייקט"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "חפש צבעים"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "בחר/י שדה להצגה בווידג'ט הזה"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "הגדר כברירת מחדל"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "מגדיר את מסד הנתונים שלך..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "חלק"
|
||||
msgid "Some folders"
|
||||
msgstr "כמה תיקיות"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "לא ניתן לבטל פעולה זו. זה יסיר לצמיתות א
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "פעולה זו אינה ניתנת לביטול. פעולה זו תאפס לצמיתות את שיטת האימות הדו-שלבי שלך. <0/> אנא הקלד את כתובת הדוא\"ל שלך כדי לאשר."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "הקלד כל דבר..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "תצוגה"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "תצוגה"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "הצג שיחות AI קודמות"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "זרימות עבודה"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "סביבת עבודה"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Tétel hozzáadása"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Összes Objektum"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Minden kész!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Biztos, hogy megsemmisíti ezeket a rekordokat? Többé nem lesznek visszaállíthatók."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Biztosan meg akarja semmisíteni ezt a rekordot? Többé nem állítható helyre."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Biztos, hogy vissza akarja állítani ezeket a rekordokat?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Biztos, hogy vissza akarja állítani ezt a rekordot?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Növekvő"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Kérdezze a MI-t"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Nem tud beolvasni? Másolja a"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Mégse"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Szerkesztés törlése"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Mappa összecsukása"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Testreszabás"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Sötét"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Irányítópult sikeresen duplikálva"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Irányítópultok"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Adat"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "törlés"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "törlés"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Mező törlése"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Mappa törlése"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Megsemmisítés {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Rekordok megsemmisítése"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Fájl áthúzása ide..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Mezők szerkesztése"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Nem sikerült duplikálni az irányítópultot"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Nem sikerült eltávolítani a képet"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Nem sikerült újraindítani az állásokat. Kérjük, próbálja meg újra később."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Kedvencek"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Folyamat"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Mappák"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Elrendezés"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Vonaldiagram"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "A link vágólapra másolva"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Mozgatás balra"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Új mező"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Új rekord"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Nincs pénznem"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Nincsenek fájlok"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Nincs mappa"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Nincs találat"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nincs találat"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Nincs Választó mező"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objektum"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objektum"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objektumok"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Megnyitva"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Egyéb"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Áttekintés"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Rekord végleges megsemmisítése"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Rekord végleges megsemmisítése"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Rekordok végleges megsemmisítése"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Rekordok végleges megsemmisítése"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Munkafolyamat végleges megsemmisítése"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Munkafolyamatok végleges megsemmisítése"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "rekord"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Rekord"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Távoli"
|
||||
msgid "Remove"
|
||||
msgstr "Eltávolítás"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Eltávolítás a kedvencek közül"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Változó eltávolítása"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Átnevezés"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Rekord visszaállítása"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Rekord visszaállítása"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Rekordok visszaállítása"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Rekordok visszaállítása"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Eredmény"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Találatok"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Szombat"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Mentés"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Mentés új nézetként"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Irányítópult mentése"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Mező keresése..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Típus keresése"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Objektum keresése"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Színek keresése"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Rekordok keresése"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Válasszon egy mezőt a widgetben való megjelenítéshez"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Beállítás alapértelmezettként"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Az adatbázis beállítása..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Néhány"
|
||||
msgid "Some folders"
|
||||
msgstr "Néhány mappa"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Ez a művelet nem visszavonható. Ez véglegesen eltávolítja a tagság
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Ez a művelet nem visszavonható. Ez véglegesen visszaállítja a kétlépcsős hitelesítési módszerét. <0/> Kérjük, a megerősítéshez írja be az e-mail címét."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Írjon be bármit..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "nézet"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Nézet"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Előző AI csevegések megtekintése"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Munkafolyamatok"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Munkaterület"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Aggiungi elemento"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Tutti gli oggetti"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Tutto pronto!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Sei sicuro di voler distruggere questi record? Non saranno più recuperabili."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Sei sicuro di voler distruggere questo record? Non potrà più essere recuperato."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Sei sicuro di voler ripristinare questi record?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Sei sicuro di voler ripristinare questo record?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Ascendente"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Chiedi a AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Non puoi scansionare? Copia il"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Annulla Edizione"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Comprimi cartella"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Personalizzazione"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Scuro"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Cruscotto duplicato con successo"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Cruscotti"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Dati"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "elimina"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "elimina"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Elimina campo"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Elimina cartella"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Distruggi {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Distruggi record"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Trascina il file qui..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Modifica campi"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Impossibile duplicare il cruscotto"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Impossibile rimuovere l'immagine"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Impossibile riprovare i lavori. Per favore riprova più tardi."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Preferiti"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Flusso"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Cartelle"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Disposizione"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Grafico a Linea"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Link copiato negli appunti"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Sposta a sinistra"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nuovo Campo"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nuovo record"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Nessuna valuta"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Nessun file"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Nessuna cartella"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Nessun risultato"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nessun risultato trovato"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Nessun campo di selezione"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "oggetto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Oggetto"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Oggetti"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Aperto"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Altro"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Panoramica"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Distruggi definitivamente il record"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Distruggi permanentemente il record"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Distruggi definitivamente i record"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Distruggi definitivamente i record"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Distruggi definitivamente il workflow"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Distruggi definitivamente i workflow"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "record"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Registro"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Remoto"
|
||||
msgid "Remove"
|
||||
msgstr "Rimuovi"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Rimuovi dai preferiti"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Rimuovi variabile"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Rinomina"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Ripristina record"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Ripristina record"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Ripristina record"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Ripristina record"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Risultato"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Risultati"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Sabato"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Salva"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Salva come nuova vista"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Salva Cruscotto"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Cerca un campo..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Cerca un tipo"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Cerca un oggetto"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Cerca colori"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Cerca record"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Seleziona un campo da visualizzare in questo widget"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Imposta come predefinito"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Configurazione del tuo database..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Alcuni"
|
||||
msgid "Some folders"
|
||||
msgstr "Alcune cartelle"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13514,14 +13483,13 @@ msgstr "Questa azione non può essere annullata. Questo rimuoverà definitivamen
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Questa azione non può essere annullata. Questo ripristinerà in modo permanente il tuo metodo di autenticazione a due fattori. <0/> Digita la tua email per confermare."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14048,7 +14016,7 @@ msgid "Type anything..."
|
||||
msgstr "Digita qualsiasi cosa..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14227,7 +14195,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14637,10 +14605,10 @@ msgid "view"
|
||||
msgstr "vista"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Vista"
|
||||
|
||||
@@ -14739,7 +14707,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vedi chat AI precedenti"
|
||||
@@ -14775,7 +14742,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15069,7 +15036,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15133,7 +15099,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Workspace"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "アイテムを追加"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "すべてのオブジェクト"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "準備完了!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "これらのレコードを本当に破壊しますか? もう復元できません。"
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "このレコードを削除してもよろしいですか? もう復元することはできません。"
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "これらのレコードを復元してもよろしいですか?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "このレコードを復元しますか?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "昇順"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "AIに尋ねる"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "スキャンできませんか? コピーしてください"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "キャンセル"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "編集をキャンセル"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "フォルダーを折りたたむ"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "カスタマイズ"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "\\ダ\\ー\\ク"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "ダッシュボードが正常に複製されました"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "ダッシュボード"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "データ"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "削除"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "削除"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "フィールドを削除"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "フォルダーを削除"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "{objectLabelPlural}を破壊する"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "レコードを破壊"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "ここにファイルをドロップしてください…"
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "フィールドを編集"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "ダッシュボードの複製に失敗しました"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "画像を削除できませんでした"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "ジョブの再試行に失敗しました。後でもう一度お試しください。"
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "お気に入り"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "フロー"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "フォルダー"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "レイアウト"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "ラインチャート"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "リンクがクリップボードにコピーされました"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "左に移動"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "新しいレコード"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "通貨なし"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "ファイルなし"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "フォルダーなし"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "結果なし"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "結果が見つかりません"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "選択フィールドなし"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "オブジェクト"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "オブジェクト"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "オブジェクト"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "開いた"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "その他"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "概要"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "レコードを永久に削除"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "レコードを永久に削除"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "レコードを永久に破壊する"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "レコードを完全に破壊"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "ワークフローを永久に破壊する"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "ワークフローを永久に破壊する"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "レコード"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "記録"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "リモート"
|
||||
msgid "Remove"
|
||||
msgstr "削除"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "お気に入りから削除"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "変数を削除"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "名前を変更"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "レコードを復元"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "レコードを復元"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "レコードを復元"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "レコードを復元"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "結果"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "結果"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "土曜日"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "保存"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "新しいビューとして保存"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "ダッシュボードを保存"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "フィールドを検索..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "タイプを検索"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "オブジェクトを検索"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "色を検索"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "レコードを検索"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "このウィジェットに表示するフィールドを選択してください"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "デフォルトとして設定"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "データベースのセットアップ..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "一部"
|
||||
msgid "Some folders"
|
||||
msgstr "いくつかのフォルダー"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "この操作は取り消せません。これにより、ワークスペ
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "この操作は取り消せません。二要素認証の方法が完全にリセットされます。<0/> 確認のため、メールアドレスを入力してください。"
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "何でも入力..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "ビュー"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "ビュー"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "以前のAIチャットを見る"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "ワークフロー"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "ワークスペース"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "항목 추가"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "모든 개체"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "준비 완료!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "이 기록들을 파괴하시겠습니까? 더 이상 복구할 수 없습니다."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "이 기록을 파괴하시겠습니까? 더 이상 복구할 수 없습니다."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "이 기록들을 복원하시겠습니까?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "이 기록을 복원하시겠습니까?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "오름차순"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "AI에게 질문하기"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "스캔이 불가능합니까?"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "취소"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "판 취소"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "폴더 접기"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "사용자 지정"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "다크"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "대시보드가 성공적으로 복제되었습니다"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "대시보드"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "데이터"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "삭제"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "삭제"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "필드 삭제"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "폴더 삭제"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "{objectLabelPlural} 파기"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "기록 파기"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "파일을 여기에 드롭하세요..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "필드 수정"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "대시보드 복제에 실패했습니다"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "사진 제거 실패"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "작업 재시도 실패. 나중에 다시 시도하세요."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "즐겨찾기"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "흐름"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "폴더"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "레이아웃"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "선형 차트"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "링크가 클립보드에 복사되었습니다"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "왼쪽으로 이동"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "새 레코드"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "통화 없음"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "파일 없음"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "폴더 없음"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "결과 없음"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "결과를 찾을 수 없습니다"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "선택 필드 없음"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "개체"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "개체"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "개체"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "열림"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "기타"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "개요"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "레코드 영구 삭제"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "기록을 영구적으로 파기합니다"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "레코드 영구 삭제"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "기록을 영구적으로 파기합니다"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "워크플로 영구 삭제"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "워크플로 영구 삭제"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "기록"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "기록"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "원격"
|
||||
msgid "Remove"
|
||||
msgstr "제거"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "즐겨찾기에서 제거"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "변수 제거"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "이름 바꾸기"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "레코드 복원"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "레코드 복원"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "레코드 복원"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "기록 복원"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "결과"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "결과"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "토요일"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "저장"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "새 보기로 저장"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "대시보드 저장"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "필드 검색..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "유형 검색"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "개체 검색"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "색상 검색"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "레코드 검색"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "이 위젯에 표시할 필드를 선택하세요"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "기본값으로 설정"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "데이터베이스 설정 중..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "일부"
|
||||
msgid "Some folders"
|
||||
msgstr "일부 폴더"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "이 작업은 취소할 수 없습니다. 이렇게 하면 이 워크스
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "이 작업은 취소할 수 없습니다. 이 작업은 이중 인증 방법을 영구적으로 초기화합니다. <0/> 확인하려면 이메일을 입력하세요."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "아무거나 입력하세요..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "보기"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "보기"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "이전 AI 채팅 보기"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "워크스페이스"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Voeg item toe"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Alle objecten"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Alles klaar!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Weet je zeker dat je deze records wilt vernietigen? Ze zijn hierna niet meer te herstellen."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Weet je zeker dat je dit record wilt vernietigen? Het kan niet meer worden hersteld."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Weet je zeker dat je deze records wilt herstellen?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Weet je zeker dat je dit record wilt herstellen?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Oplopend"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Vraag AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Kan je niet scannen? Kopieer de"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Annuleer Bewerken"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Map inklappen"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Aanpassen"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Donker"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Dashboard succesvol gedupliceerd"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Dashboards"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "verwijderen"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "verwijderen"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Veld verwijderen"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Map verwijderen"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Vernietig {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Vernietig Records"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Bestand hier neerzetten..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Velden bewerken"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Het dupliceren van het dashboard is mislukt"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Het verwijderen van de afbeelding is mislukt"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Fout bij het opnieuw proberen van taken. Probeer het later opnieuw."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favorieten"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Stroom"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Mappen"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Lay-out"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Lijngrafiek"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Link gekopieerd naar klembord"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Verplaats naar links"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nieuw veld"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nieuw record"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Geen valuta"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Geen bestanden"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Geen map"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Geen resultaten"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Geen resultaten gevonden"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Geen selecteer veld"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "object"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Object"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objecten"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Geopend"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Overige"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Overzicht"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Record definitief vernietigen"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Vernietig Record Permanent"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Records definitief vernietigen"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Vernietig Records Permanent"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Workflow permanent vernietigen"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Workflows definitief vernietigen"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "record"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Record"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Extern"
|
||||
msgid "Remove"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Verwijderen uit favorieten"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Variabele verwijderen"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Naam wijzigen"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Record herstellen"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Record Herstellen"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Records herstellen"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Records Herstellen"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Resultaat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultaten"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Zaterdag"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Opslaan"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Opslaan als nieuwe weergave"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Dashboard opslaan"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Zoek een veld..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Zoek een type"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Zoek een object"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Zoek kleuren"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Records zoeken"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Selecteer een veld om in deze widget weer te geven"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Instellen als standaard"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Uw database opzetten..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Enkele"
|
||||
msgid "Some folders"
|
||||
msgstr "Sommige mappen"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13514,14 +13483,13 @@ msgstr "Deze actie kan niet ongedaan worden gemaakt. Dit zal permanent uw lidmaa
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Deze actie kan niet ongedaan worden gemaakt. Hiermee wordt je methode voor tweefactorauthenticatie permanent opnieuw ingesteld. <0/> Typ je e-mailadres ter bevestiging."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14048,7 +14016,7 @@ msgid "Type anything..."
|
||||
msgstr "Typ iets..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14227,7 +14195,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14637,10 +14605,10 @@ msgid "view"
|
||||
msgstr "weergave"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Weergave"
|
||||
|
||||
@@ -14739,7 +14707,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Bekijk Vorige AI-chats"
|
||||
@@ -14775,7 +14742,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15069,7 +15036,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15133,7 +15099,7 @@ msgstr "Workstrooms"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Werkruimte"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Legg til element"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Alle objekter"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Alt klart!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Er du sikker på at du vil ødelegge disse postene? De kan ikke gjenopprettes."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Er du sikker på at du vil ødelegge denne posten? Den kan ikke gjenopprettes."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Er du sikker på at du vil gjenopprette disse postene?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Er du sikker på at du vil gjenopprette denne posten?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Stigende"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Spør AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Kan ikke skanne? Kopier "
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Avbryt"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Avbryt redigering"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Fold sammen mappe"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Tilpasning"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Mørk"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Dashbordet ble duplisert"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "slett"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "slett"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Slett felt"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Slett mappe"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Ødelegg {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Ødelegg poster"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Slipp fil her..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Rediger felt"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Kunne ikke duplisere dashbordet"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Kunne ikke fjerne bilde"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Mislyktes å prøve jobber på nytt. Vennligst prøv igjen senere."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favoritter"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Flyt"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Mapper"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Oppsett"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Linjediagram"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Lenke kopiert til utklippstavlen"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Flytt til venstre"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nytt felt"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Ny post"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Ingen valuta"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Ingen filer"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Ingen mappe"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Ingen resultater"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Ingen resultater funnet"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Ingen valgt felt"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objekt"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objekter"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Åpnet"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Annen"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Oversikt"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Permanent ødelegg post"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Permanent ødelegg post"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Permanent ødelegg poster"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Permanent ødelegge poster"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Permanent ødelegg arbeidsflyt"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Permanent ødelegg workflows"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "oppføring"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Oppføring"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Fjern"
|
||||
msgid "Remove"
|
||||
msgstr "Fjern"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Fjern fra favoritter"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Fjern variabel"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Gi nytt navn"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Gjenopprett oppføring"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Gjenopprett post"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Gjenopprett oppføringer"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Gjenopprett poster"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultater"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Lørdag"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Lagre"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Lagre som ny visning"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Lagre dashbord"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Søk i et felt..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Søk etter en type"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Søk etter et objekt"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Søk farger"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Søk poster"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Velg et felt som skal vises i denne widgeten"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Sett som standard"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Konfigurere databasen din..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Noen"
|
||||
msgid "Some folders"
|
||||
msgstr "Noen mapper"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Denne handlingen kan ikke angres. Dette vil permanent fjerne medlemskape
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Denne handlingen kan ikke angres. Dette vil permanent tilbakestille tofaktorautentiseringsmetoden din. <0/> Skriv inn e-posten din for å bekrefte."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Skriv hva som helst..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "vis"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Vis"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vis tidligere AI-chatter"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Arbeidsflyter"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Arbeidsområde"
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Dodaj element"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Wszystkie obiekty"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Wszystko gotowe!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Czy na pewno chcesz zniszczyć te rekordy? Nie będą już odzyskiwalne."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Czy na pewno chcesz zniszczyć ten rekord? Nie będzie można go już odzyskać."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Czy na pewno chcesz przywrócić te rekordy?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Czy na pewno chcesz przywrócić ten rekord?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Rosnąco"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Zapytaj AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Nie można zeskanować? Skopiuj"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Anuluj"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Anuluj edycję"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Zwiń folder"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Dostosowywanie"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Ciemne"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Panel został zduplikowany pomyślnie"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Pulpity nawigacyjne"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Dane"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "usuń"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "usuń"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Usuń pole"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Usuń folder"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Zniszcz {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Zniszcz rekordy"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Upuść plik tutaj..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Edytuj pola"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Nie udało się zduplikować panelu"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Nie udało się usunąć zdjęcia"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Nie udało się ponowić zadań. Proszę spróbować ponownie później."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Ulubione"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Przepływ"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Foldery"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Układ"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Wykres liniowy"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Link został skopiowany do schowka"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Przenieś w lewo"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Nowe pole"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Nowy rekord"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Brak waluty"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Brak plików"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Brak folderu"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Brak wyników"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nie znaleziono wyników"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Brak pola wyboru"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "obiekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Obiekt"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Obiekty"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Otwarty"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Inne"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Przegląd"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Trwale zniszcz rekord"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Trwale zniszcz rekord"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Trwale zniszcz rekordy"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Trwale zniszcz rekordy"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Trwale zniszcz workflow"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Trwale zniszcz workflow"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "rekord"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Rekord"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Zdalny"
|
||||
msgid "Remove"
|
||||
msgstr "Usuń"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Usuń z ulubionych"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Usuń zmienną"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Zmień nazwę"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Przywróć rekord"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Przywróć rekord"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Przywróć wpisy"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Przywróć rekordy"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Wynik"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Wyniki"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Sobota"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Zapisz"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Zapisz jako nowy widok"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Zapisz Dashboard"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Wyszukaj pole..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Wyszukaj typ"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Szukaj obiektu"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Szukaj kolorów"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Przeszukaj rekordy"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Wybierz pole do wyświetlenia w tym widżecie"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Ustaw jako domyślne"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Ustawianie twojej bazy danych..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Niektóre"
|
||||
msgid "Some folders"
|
||||
msgstr "Niektóre foldery"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Ta czynność nie może zostać cofnięta. Spowoduje to trwałe usunięc
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Tej czynności nie można cofnąć. Spowoduje to trwałe zresetowanie metody uwierzytelniania dwuskładnikowego. <0/> Wpisz swój e-mail, aby potwierdzić."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Wpisz cokolwiek..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "widok"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Widok"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Pokaż poprzednie czaty AI"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Przepływy pracy"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Miejsce pracy"
|
||||
|
||||
|
||||
@@ -941,23 +941,23 @@ msgid "Add Item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1418,7 +1418,7 @@ msgid "All Objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1433,7 +1433,7 @@ msgid "All set!"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1534,7 +1534,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1892,25 +1892,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1951,7 +1947,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr ""
|
||||
@@ -2559,11 +2554,13 @@ msgstr ""
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr ""
|
||||
@@ -2964,7 +2961,7 @@ msgid "Collapse folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3894,9 +3891,10 @@ msgid "Customization"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3967,7 +3965,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3981,7 +3978,7 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr ""
|
||||
|
||||
@@ -4286,7 +4283,7 @@ msgstr ""
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4303,7 +4300,7 @@ msgstr ""
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4390,7 +4387,7 @@ msgid "Delete field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4591,7 +4588,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr ""
|
||||
|
||||
@@ -4799,7 +4795,7 @@ msgid "Drop file here..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4931,9 +4927,9 @@ msgid "Edit Fields"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,9 +4950,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6119,13 +6115,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6189,9 +6183,9 @@ msgstr ""
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6309,7 +6303,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr ""
|
||||
|
||||
@@ -6581,8 +6575,8 @@ msgid "Flow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6592,8 +6586,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr ""
|
||||
|
||||
@@ -8023,7 +8017,7 @@ msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8138,8 +8132,8 @@ msgid "Line Chart"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8155,12 +8149,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8799,19 +8793,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8823,12 +8817,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9074,9 +9068,9 @@ msgid "New Field"
|
||||
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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9116,11 +9110,11 @@ msgid "New record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9307,7 +9301,7 @@ msgid "No currency"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9419,12 +9413,12 @@ msgid "No Files"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9511,7 +9505,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9588,14 +9582,14 @@ msgid "No Results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9620,12 +9614,12 @@ msgid "No Select field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9833,9 +9827,9 @@ msgstr ""
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr ""
|
||||
|
||||
@@ -9859,11 +9853,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9900,9 +9889,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -10082,7 +10071,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
@@ -10154,7 +10143,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10164,9 +10153,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
@@ -10240,7 +10229,7 @@ msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10433,8 +10422,6 @@ msgstr ""
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr ""
|
||||
|
||||
@@ -10445,7 +10432,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr ""
|
||||
|
||||
@@ -10459,11 +10445,6 @@ msgstr ""
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10972,7 +10953,7 @@ msgstr ""
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr ""
|
||||
|
||||
@@ -11148,16 +11129,14 @@ msgstr ""
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11187,7 +11166,7 @@ msgid "Remove from favorites"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11234,7 +11213,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr ""
|
||||
@@ -11375,8 +11354,6 @@ msgstr ""
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr ""
|
||||
|
||||
@@ -11388,8 +11365,6 @@ msgstr ""
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr ""
|
||||
|
||||
@@ -11405,7 +11380,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr ""
|
||||
|
||||
@@ -11603,6 +11578,7 @@ msgstr ""
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -11617,6 +11593,11 @@ msgstr ""
|
||||
msgid "Save Dashboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11661,8 +11642,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11701,7 +11680,7 @@ msgid "Search a field..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11722,8 +11701,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11738,7 +11717,7 @@ msgid "Search a type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11775,8 +11754,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11800,7 +11779,7 @@ msgid "Search colors"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11869,7 +11848,7 @@ msgid "Search records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12095,7 +12074,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12316,11 +12295,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12390,7 +12364,7 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12662,11 +12636,6 @@ msgstr ""
|
||||
msgid "Some folders"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13125,10 +13094,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13507,14 +13476,13 @@ msgstr ""
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14041,7 +14009,7 @@ msgid "Type anything..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14220,7 +14188,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14630,10 +14598,10 @@ msgid "view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr ""
|
||||
|
||||
@@ -14732,7 +14700,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr ""
|
||||
@@ -14768,7 +14735,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15060,7 +15027,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15124,7 +15090,7 @@ msgstr ""
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -946,23 +946,23 @@ msgid "Add Item"
|
||||
msgstr "Adicionar item"
|
||||
|
||||
#. js-lingui-id: cI2ZVO
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Add item to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gaZXkv
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItemsFolder.tsx
|
||||
msgid "Add menu item"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JbORSt
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item after"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DKlI/M
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Add menu item before"
|
||||
msgstr ""
|
||||
|
||||
@@ -1423,7 +1423,7 @@ msgid "All Objects"
|
||||
msgstr "Todos os Objetos"
|
||||
|
||||
#. js-lingui-id: RoFE84
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
msgid "All objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1438,7 +1438,7 @@ msgid "All set!"
|
||||
msgstr "Tudo pronto!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1539,7 +1539,7 @@ msgid "alphabetical"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eO7HSp
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectMenuItem.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectMenuItem.tsx
|
||||
msgid "Already in navbar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1897,25 +1897,21 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: OJOR8q
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to destroy these records? They won't be recoverable anymore."
|
||||
msgstr "Tem certeza de que deseja destruir esses registros? Eles não serão mais recuperáveis."
|
||||
|
||||
#. js-lingui-id: UK5TO6
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to destroy this record? It cannot be recovered anymore."
|
||||
msgstr "Tem certeza de que deseja destruir este registro? Ele não poderá ser recuperado mais."
|
||||
|
||||
#. js-lingui-id: mcHVC1
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Are you sure you want to restore these records?"
|
||||
msgstr "Tem certeza de que deseja restaurar esses registros?"
|
||||
|
||||
#. js-lingui-id: lmgkf0
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Are you sure you want to restore this record?"
|
||||
msgstr "Tem certeza de que deseja restaurar este registro?"
|
||||
|
||||
@@ -1956,7 +1952,6 @@ msgstr "Ascendente"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Perguntar ao AI"
|
||||
@@ -2564,11 +2559,13 @@ msgstr "Não consegue escanear? Copie o"
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/CancelButton.tsx
|
||||
#: src/modules/object-record/record-update-multiple/components/UpdateMultipleRecordsFooter.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. js-lingui-id: HYLdMN
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Cancel Edition"
|
||||
msgstr "Cancelar Edição"
|
||||
@@ -2969,7 +2966,7 @@ msgid "Collapse folder"
|
||||
msgstr "Recolher pasta"
|
||||
|
||||
#. js-lingui-id: jZlrte
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,9 +3896,10 @@ msgid "Customization"
|
||||
msgstr "Personalização"
|
||||
|
||||
#. js-lingui-id: srRMnJ
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditObjectViewBase.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
|
||||
@@ -3972,7 +3970,6 @@ msgstr "Escuro"
|
||||
|
||||
#. js-lingui-id: ogQzcZ
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Dashboard duplicated successfully"
|
||||
msgstr "Painel duplicado com sucesso"
|
||||
|
||||
@@ -3986,7 +3983,7 @@ msgstr "Painéis"
|
||||
#: src/modules/side-panel/pages/workflow/trigger-type/components/SidePanelWorkflowSelectTriggerTypeContent.tsx
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/ChartSettingsHeadings.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Data"
|
||||
msgstr "Data"
|
||||
|
||||
@@ -4291,7 +4288,7 @@ msgstr "excluir"
|
||||
#: src/modules/views/view-picker/components/ViewPickerOptionDropdown.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/emailing-domains/components/SettingsEmailingDomainRowDropdownMenu.tsx
|
||||
@@ -4308,7 +4305,7 @@ msgstr "excluir"
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -4395,7 +4392,7 @@ msgid "Delete field"
|
||||
msgstr "Excluir campo"
|
||||
|
||||
#. js-lingui-id: 97QUV6
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Delete Folder"
|
||||
msgstr "Excluir pasta"
|
||||
|
||||
@@ -4596,7 +4593,6 @@ msgstr "Destruir {objectLabelPlural}"
|
||||
|
||||
#. js-lingui-id: kG5yO6
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Destroy Records"
|
||||
msgstr "Destruir Registros"
|
||||
|
||||
@@ -4804,7 +4800,7 @@ msgid "Drop file here..."
|
||||
msgstr "Solte o arquivo aqui..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Duplicate"
|
||||
@@ -4936,9 +4932,9 @@ msgid "Edit Fields"
|
||||
msgstr "Editar Campos"
|
||||
|
||||
#. js-lingui-id: uPHscS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -4959,9 +4955,9 @@ msgid "Edit Layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /PoNoq
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Edit link"
|
||||
msgstr ""
|
||||
|
||||
@@ -6124,13 +6120,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: NUmmdc
|
||||
#: src/modules/command-menu-item/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/dashboard/components/DuplicateDashboardSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate dashboard"
|
||||
msgstr "Falha ao duplicar o painel"
|
||||
|
||||
#. js-lingui-id: WYXxQF
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Failed to duplicate workflow"
|
||||
msgstr ""
|
||||
|
||||
@@ -6194,9 +6188,9 @@ msgstr "Falha ao remover imagem"
|
||||
msgid "Failed to retry jobs. Please try again later."
|
||||
msgstr "Falha ao repetir trabalhos. Por favor, tente novamente mais tarde."
|
||||
|
||||
#. js-lingui-id: farFvy
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Failed to save layout customization"
|
||||
#. js-lingui-id: fuRtgB
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Failed to save navigation layout"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y3HIOa
|
||||
@@ -6314,7 +6308,7 @@ msgid "Fast Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X9kySA
|
||||
#: src/modules/navigation-menu-item/display/sections/favorites/components/FavoritesSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItemFolders.tsx
|
||||
msgid "Favorites"
|
||||
msgstr "Favoritos"
|
||||
|
||||
@@ -6586,8 +6580,8 @@ msgid "Flow"
|
||||
msgstr "Fluxo"
|
||||
|
||||
#. js-lingui-id: kNqMMd
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -6597,8 +6591,8 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Pastas"
|
||||
|
||||
@@ -8028,7 +8022,7 @@ msgid "Layout"
|
||||
msgstr "Disposição"
|
||||
|
||||
#. js-lingui-id: W4nIBb
|
||||
#: src/modules/layout-customization/components/LayoutCustomizationBar.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuEditModeBar.tsx
|
||||
msgid "Layout customization"
|
||||
msgstr ""
|
||||
|
||||
@@ -8143,8 +8137,8 @@ msgid "Line Chart"
|
||||
msgstr "Gráfico de Linhas"
|
||||
|
||||
#. js-lingui-id: yzF66j
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
@@ -8160,12 +8154,12 @@ msgid "Link copied to clipboard"
|
||||
msgstr "Link copiado para a área de transferência"
|
||||
|
||||
#. js-lingui-id: vH3ZQY
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelLinkInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddLinkToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditLinkItemView.tsx
|
||||
#: src/modules/navigation-menu-item/display/dnd/hooks/useHandleAddToNavigationDrop.ts
|
||||
#: src/modules/navigation-menu-item/hooks/useHandleAddToNavigationDrop.ts
|
||||
msgid "Link label"
|
||||
msgstr ""
|
||||
|
||||
@@ -8804,19 +8798,19 @@ msgid "Most installed version"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3Ib6FN
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: iSLA/r
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move left"
|
||||
msgstr "Mover para a esquerda"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
#: src/modules/object-record/record-group/hooks/useRecordGroupActions.ts
|
||||
msgid "Move right"
|
||||
@@ -8828,12 +8822,12 @@ msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: JCPOml
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move to folder"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QyioBP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
|
||||
@@ -9079,9 +9073,9 @@ msgid "New Field"
|
||||
msgstr "Novo campo"
|
||||
|
||||
#. 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
|
||||
#: src/modules/side-panel/components/SidePanelFolderInfo.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useAddFolderToNavigationMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "New folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9121,11 +9115,11 @@ msgid "New record"
|
||||
msgstr "Novo registro"
|
||||
|
||||
#. js-lingui-id: x6Ckh1
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/side-panel/hooks/useSidePanelMenu.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/hooks/useNavigationMenuItemEditOrganizeActions.ts
|
||||
#: src/modules/navigation-menu-item/edit/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/edit/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/object-metadata/components/WorkspaceSectionAddMenuItemButton.tsx
|
||||
#: src/modules/navigation-menu-item/hooks/useOpenAddItemToFolderPage.ts
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "New sidebar item"
|
||||
msgstr ""
|
||||
|
||||
@@ -9312,7 +9306,7 @@ msgid "No currency"
|
||||
msgstr "Nenhuma moeda"
|
||||
|
||||
#. js-lingui-id: DKVJFE
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "No custom views available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9424,12 +9418,12 @@ msgid "No Files"
|
||||
msgstr "Nenhum arquivo"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Nenhuma pasta"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9516,7 +9510,7 @@ msgid "No object found"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YFHO2u
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "No objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9593,14 +9587,14 @@ msgid "No Results"
|
||||
msgstr "Nenhum resultado"
|
||||
|
||||
#. js-lingui-id: AxPAXW
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nenhum resultado encontrado"
|
||||
|
||||
@@ -9625,12 +9619,12 @@ msgid "No Select field"
|
||||
msgstr "Sem campo de seleção"
|
||||
|
||||
#. js-lingui-id: RQ6tfU
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
msgid "No system objects available"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Yf4rVG
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "No system objects with views found"
|
||||
msgstr ""
|
||||
|
||||
@@ -9838,9 +9832,9 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
msgstr "Objeto"
|
||||
|
||||
@@ -9864,11 +9858,6 @@ msgstr ""
|
||||
msgid "Object ID"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wZpAXW
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "object permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ecLxgy
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelTableRowOptionsDropdown.tsx
|
||||
msgid "Object permission options"
|
||||
@@ -9905,9 +9894,9 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/new-field/SettingsObjectNewFieldConfigure.tsx
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowAiAgentPermissionsObjectsList.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsSection.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Objects"
|
||||
msgstr "Objetos"
|
||||
|
||||
@@ -10087,7 +10076,7 @@ msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OV5wZZ
|
||||
#: src/modules/navigation-menu-item/display/sections/components/NavigationDrawerOpenedSection.tsx
|
||||
#: src/modules/object-metadata/components/NavigationDrawerOpenedSection.tsx
|
||||
msgid "Opened"
|
||||
msgstr "Aberto"
|
||||
|
||||
@@ -10159,7 +10148,7 @@ msgid "Organization plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nV6twc
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Organize"
|
||||
msgstr ""
|
||||
|
||||
@@ -10169,9 +10158,9 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdmin.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
msgid "Other"
|
||||
msgstr "Outros"
|
||||
@@ -10245,7 +10234,7 @@ msgid "Overview"
|
||||
msgstr "Visão geral"
|
||||
|
||||
#. js-lingui-id: LtI9AS
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOwnerSection.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOwnerSection.tsx
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
|
||||
@@ -10438,8 +10427,6 @@ msgstr "Destruir permanentemente o registro"
|
||||
#. js-lingui-id: 35dBYb
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/DestroySingleRecordCommand.tsx
|
||||
msgid "Permanently Destroy Record"
|
||||
msgstr "Destruir Registro Permanentemente"
|
||||
|
||||
@@ -10450,7 +10437,6 @@ msgstr "Destruir registros permanentemente"
|
||||
|
||||
#. js-lingui-id: YyP8vD
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/DestroyMultipleRecordsCommand.tsx
|
||||
msgid "Permanently Destroy Records"
|
||||
msgstr "Destruir Registros Permanentemente"
|
||||
|
||||
@@ -10464,11 +10450,6 @@ msgstr "Destruir permanentemente o workflow"
|
||||
msgid "Permanently destroy workflows"
|
||||
msgstr "Destruir workflows permanentemente"
|
||||
|
||||
#. js-lingui-id: yWmZKk
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "permission flag"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9cDpsw
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -10977,7 +10958,7 @@ msgstr "registro"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Record"
|
||||
msgstr "Gravação"
|
||||
|
||||
@@ -11153,16 +11134,14 @@ msgstr "Remoto"
|
||||
msgid "Remove"
|
||||
msgstr "Remover"
|
||||
|
||||
#. js-lingui-id: XABoh4
|
||||
#. placeholder {0}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {0} navigation menu items?"
|
||||
#. js-lingui-id: 0Urj9q
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu item?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: p/lN7X
|
||||
#. placeholder {1}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "Remove {1} navigation menu item?"
|
||||
#. js-lingui-id: Ef5jwi
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "Remove {navigationMenuItemCount} navigation menu items?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1O32oy
|
||||
@@ -11192,7 +11171,7 @@ msgid "Remove from favorites"
|
||||
msgstr "Remover dos favoritos"
|
||||
|
||||
#. js-lingui-id: 9VZ6f0
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditOrganizeActions.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditOrganizeActions.tsx
|
||||
msgid "Remove from sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -11239,7 +11218,7 @@ msgstr "Remover variável"
|
||||
|
||||
#. js-lingui-id: 2wxgft
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Rename"
|
||||
msgstr "Renomear"
|
||||
@@ -11380,8 +11359,6 @@ msgstr "Restaurar registro"
|
||||
#. js-lingui-id: NzMNOA
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/components/RestoreSingleRecordCommand.tsx
|
||||
msgid "Restore Record"
|
||||
msgstr "Restaurar Registro"
|
||||
|
||||
@@ -11393,8 +11370,6 @@ msgstr "Restaurar registros"
|
||||
#. js-lingui-id: Xqj0Cb
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/multiple-records/components/RestoreMultipleRecordsCommand.tsx
|
||||
msgid "Restore Records"
|
||||
msgstr "Restaurar Registros"
|
||||
|
||||
@@ -11410,7 +11385,7 @@ msgstr "Resultado"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultados"
|
||||
|
||||
@@ -11608,6 +11583,7 @@ msgstr "Sábado"
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationRegistrationOAuthTab.tsx
|
||||
#: src/modules/settings/components/SaveAndCancelButtons/SaveButton.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableActionButtons.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Save"
|
||||
msgstr "Salvar"
|
||||
@@ -11622,6 +11598,11 @@ msgstr "Salvar como nova visualização"
|
||||
msgid "Save Dashboard"
|
||||
msgstr "Salvar Painel"
|
||||
|
||||
#. js-lingui-id: BZVCCj
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
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"
|
||||
@@ -11666,8 +11647,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
@@ -11706,7 +11685,7 @@ msgid "Search a field..."
|
||||
msgstr "Pesquisar um campo..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11727,8 +11706,8 @@ msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hVJ1MP
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
msgid "Search a system object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11743,7 +11722,7 @@ msgid "Search a type"
|
||||
msgstr "Pesquisar um tipo"
|
||||
|
||||
#. js-lingui-id: +MhOVB
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11780,8 +11759,8 @@ msgstr "Pesquisar um objeto"
|
||||
|
||||
#. js-lingui-id: BoNHR0
|
||||
#: src/pages/settings/applications/components/SettingsApplicationDataTable.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Search an object..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11805,7 +11784,7 @@ msgid "Search colors"
|
||||
msgstr "Pesquisar cores"
|
||||
|
||||
#. js-lingui-id: AR3FV/
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelEditColorOption.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditColorOption.tsx
|
||||
msgid "Search colors..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11874,7 +11853,7 @@ msgid "Search records"
|
||||
msgstr "Pesquisar registros"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12100,7 +12079,7 @@ msgid "Select a field to display in this widget"
|
||||
msgstr "Selecione um campo para exibir neste widget"
|
||||
|
||||
#. js-lingui-id: dtAvBz
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNavigationMenuItemEditPage.tsx
|
||||
msgid "Select a navigation item to edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -12321,11 +12300,6 @@ msgstr ""
|
||||
msgid "Set as default"
|
||||
msgstr "Definir como padrão"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ml98ku
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
msgid "Set as Primary"
|
||||
@@ -12395,7 +12369,7 @@ msgstr "Configurando seu banco de dados..."
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownDefaultComponents.tsx
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsSettingsSection.tsx
|
||||
@@ -12667,11 +12641,6 @@ msgstr "Alguns"
|
||||
msgid "Some folders"
|
||||
msgstr "Algumas pastas"
|
||||
|
||||
#. js-lingui-id: hqUWge
|
||||
#: src/modules/layout-customization/hooks/useSaveLayoutCustomization.ts
|
||||
msgid "Some layout changes could not be saved"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nwtY4N
|
||||
#: src/pages/auth/Authorize.tsx
|
||||
msgid "Something went wrong"
|
||||
@@ -13130,10 +13099,10 @@ msgstr ""
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
|
||||
@@ -13512,14 +13481,13 @@ msgstr "Essa ação não pode ser desfeita. Isso removerá permanentemente sua p
|
||||
msgid "This action cannot be undone. This will permanently reset your two factor authentication method. <0/> Please type in your email to confirm."
|
||||
msgstr "Essa ação não pode ser desfeita. Isso redefinirá permanentemente seu método de autenticação de dois fatores. <0/> Digite seu e-mail para confirmar."
|
||||
|
||||
#. js-lingui-id: XxxrMw
|
||||
#. placeholder {2}: favoritesEdit.navigationMenuItemCount
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
msgid "This action will delete this folder and all {2} navigation menu items inside. Do you want to continue?"
|
||||
#. js-lingui-id: lAHIY2
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and all {navigationMenuItemCount} navigation menu items inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gSO0+U
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderDnd.tsx
|
||||
#: src/modules/navigation-menu-item/components/CurrentWorkspaceMemberNavigationMenuItems.tsx
|
||||
msgid "This action will delete this folder and the navigation menu item inside. Do you want to continue?"
|
||||
msgstr ""
|
||||
|
||||
@@ -14046,7 +14014,7 @@ msgid "Type anything..."
|
||||
msgstr "Digite qualquer coisa..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14225,7 +14193,7 @@ msgstr ""
|
||||
#: src/modules/ui/field/display/components/ActorDisplay.tsx
|
||||
#: src/modules/side-panel/components/SidePanelContextChip.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutTabsRenderer.tsx
|
||||
#: src/modules/page-layout/components/PageLayoutRendererContent.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleFullNameFieldDisplay.tsx
|
||||
#: src/modules/object-record/record-title-cell/components/RecordTitleCellTextFieldDisplay.tsx
|
||||
#: src/modules/object-record/components/RecordChip.tsx
|
||||
@@ -14635,10 +14603,10 @@ msgid "view"
|
||||
msgstr "visualização"
|
||||
|
||||
#. js-lingui-id: jpctdh
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "View"
|
||||
msgstr "Visualização"
|
||||
|
||||
@@ -14737,7 +14705,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/engine-command/constants/EngineComponentKeyHeadlessComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Ver Conversas Anteriores da IA"
|
||||
@@ -14773,7 +14740,7 @@ msgid "View workspace activity logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1I6UoR
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Views"
|
||||
msgstr ""
|
||||
|
||||
@@ -15067,7 +15034,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 2jzcC5
|
||||
#: src/modules/command-menu-item/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
#: src/modules/command-menu-item/engine-command/record/single-record/workflow/components/DuplicateWorkflowSingleRecordCommand.tsx
|
||||
msgid "Workflow duplicated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -15131,7 +15097,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
#: src/modules/navigation-menu-item/components/WorkspaceNavigationMenuItems.tsx
|
||||
msgid "Workspace"
|
||||
msgstr "Workspace"
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user