Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98727eb40e | ||
|
|
891d6a375c | ||
|
|
1c0a7029c3 | ||
|
|
613be773cb | ||
|
|
2dd1fffe02 | ||
|
|
e13c9ef46c | ||
|
|
438d502988 | ||
|
|
edc47bd458 | ||
|
|
47bdcb11d8 | ||
|
|
b817bdca02 | ||
|
|
9c07ecd363 | ||
|
|
eb13378760 | ||
|
|
3e699c4458 | ||
|
|
f738961127 | ||
|
|
49aac04b84 | ||
|
|
40c6c63bf5 | ||
|
|
d583984bf0 | ||
|
|
714f149b0c | ||
|
|
194f0963dc | ||
|
|
5fa3094800 | ||
|
|
87f8e5ca19 | ||
|
|
e041125426 | ||
|
|
d88fb2bd65 | ||
|
|
cdc7339da1 | ||
|
|
69d228d8a1 | ||
|
|
455022f652 | ||
|
|
fa354b4c1c | ||
|
|
0894f2004b | ||
|
|
665db83bb5 | ||
|
|
64a7725ac7 | ||
|
|
76d3e4ad2e | ||
|
|
fb772c7695 | ||
|
|
123d6241d7 | ||
|
|
d2a99ef72d | ||
|
|
96959b43ba | ||
|
|
3f495124a5 | ||
|
|
353d1e89d5 | ||
|
|
87f5c0083f | ||
|
|
7dfc556250 | ||
|
|
9f6855e7dd | ||
|
|
33c74c4d28 | ||
|
|
ce2723d6cf | ||
|
|
12233e6c47 | ||
|
|
84b325876d | ||
|
|
88c0b24d9e | ||
|
|
87bb2f94bb | ||
|
|
c67602f2e8 | ||
|
|
e34ca3817c | ||
|
|
227d24512e | ||
|
|
1382790c80 | ||
|
|
5e7e5dd466 | ||
|
|
6182918a66 | ||
|
|
6829fc315a | ||
|
|
8425afd930 | ||
|
|
64e031b9dd | ||
|
|
cd10f3cbd9 | ||
|
|
bf5cc68f25 | ||
|
|
8bf9b12ace | ||
|
|
2ac93bd803 | ||
|
|
884b06936e | ||
|
|
63666547fb |
@@ -22,7 +22,7 @@ This main guide provides a high-level overview and navigation hub.
|
||||
|
||||
A syncable entity is a metadata entity that:
|
||||
- Has a **`universalIdentifier`**: A unique identifier used for syncing entities across workspaces/applications
|
||||
- Has an **`applicationId`**: Links the entity to an application (Twenty Standard or Custom applications)
|
||||
- Has an **`applicationId`**: Links the entity to an application (Standard or Custom applications)
|
||||
- Participates in the **workspace migration system**: Can be created, updated, and deleted through the migration pipeline
|
||||
- Is **cached as a flat entity**: Denormalized representation for efficient validation and change detection
|
||||
|
||||
|
||||
@@ -69,13 +69,14 @@ jobs:
|
||||
|
||||
- name: Server / Start
|
||||
run: |
|
||||
npx nx start twenty-server &
|
||||
npx nx run twenty-server:start:ci &
|
||||
echo "Waiting for server to be ready..."
|
||||
timeout 60 bash -c 'until curl -s http://localhost:3000/health; do sleep 2; done'
|
||||
timeout 60 bash -c 'until curl -sf http://localhost:3000/healthz; do sleep 2; done'
|
||||
|
||||
- name: Start worker
|
||||
working-directory: packages/twenty-server
|
||||
run: |
|
||||
npx nx run twenty-server:worker &
|
||||
NODE_ENV=development node dist/queue-worker/queue-worker.js &
|
||||
echo "Worker started"
|
||||
|
||||
- name: Zapier / Build
|
||||
|
||||
@@ -7,9 +7,7 @@
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"keywords": [
|
||||
"twenty-app"
|
||||
],
|
||||
"keywords": [],
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"twenty": "twenty",
|
||||
|
||||
-70
@@ -1,70 +0,0 @@
|
||||
import { APPLICATION_UNIVERSAL_IDENTIFIER } from 'src/constants/universal-identifiers';
|
||||
import { appBuild, appDeploy, appInstall, appUninstall } from 'twenty-sdk/cli';
|
||||
import { MetadataApiClient } from 'twenty-client-sdk/metadata';
|
||||
import { afterAll, beforeAll, describe, expect, it } from 'vitest';
|
||||
|
||||
const APP_PATH = process.cwd();
|
||||
|
||||
describe('App installation', () => {
|
||||
beforeAll(async () => {
|
||||
const buildResult = await appBuild({
|
||||
appPath: APP_PATH,
|
||||
tarball: true,
|
||||
onProgress: (message: string) => console.log(`[build] ${message}`),
|
||||
});
|
||||
|
||||
if (!buildResult.success) {
|
||||
throw new Error(
|
||||
`Build failed: ${buildResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
|
||||
const deployResult = await appDeploy({
|
||||
tarballPath: buildResult.data.tarballPath!,
|
||||
onProgress: (message: string) => console.log(`[deploy] ${message}`),
|
||||
});
|
||||
|
||||
if (!deployResult.success) {
|
||||
throw new Error(
|
||||
`Deploy failed: ${deployResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
|
||||
const installResult = await appInstall({ appPath: APP_PATH });
|
||||
|
||||
if (!installResult.success) {
|
||||
throw new Error(
|
||||
`Install failed: ${installResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
const uninstallResult = await appUninstall({ appPath: APP_PATH });
|
||||
|
||||
if (!uninstallResult.success) {
|
||||
console.warn(
|
||||
`App uninstall failed: ${uninstallResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
it('should find the installed app in the applications list', async () => {
|
||||
const metadataClient = new MetadataApiClient();
|
||||
|
||||
const result = await metadataClient.query({
|
||||
findManyApplications: {
|
||||
id: true,
|
||||
name: true,
|
||||
universalIdentifier: true,
|
||||
},
|
||||
});
|
||||
|
||||
const installedApp = result.findManyApplications.find(
|
||||
(application: { universalIdentifier: string }) =>
|
||||
application.universalIdentifier === APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
);
|
||||
|
||||
expect(installedApp).toBeDefined();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,87 @@
|
||||
import * as fs from 'fs';
|
||||
import * as os from 'os';
|
||||
import * as path from 'path';
|
||||
|
||||
import { appDevOnce, appUninstall } from 'twenty-sdk/cli';
|
||||
|
||||
const APP_PATH = process.cwd();
|
||||
const CONFIG_DIR = path.join(os.homedir(), '.twenty');
|
||||
|
||||
function validateEnv(): { apiUrl: string; apiKey: string } {
|
||||
const apiUrl = process.env.TWENTY_API_URL;
|
||||
const apiKey = process.env.TWENTY_API_KEY;
|
||||
|
||||
if (!apiUrl || !apiKey) {
|
||||
throw new Error(
|
||||
'TWENTY_API_URL and TWENTY_API_KEY must be set.\n' +
|
||||
'Start a local server: yarn twenty server start\n' +
|
||||
'Or set them in vitest env config.',
|
||||
);
|
||||
}
|
||||
|
||||
return { apiUrl, apiKey };
|
||||
}
|
||||
|
||||
async function checkServer(apiUrl: string) {
|
||||
let response: Response;
|
||||
|
||||
try {
|
||||
response = await fetch(`${apiUrl}/healthz`);
|
||||
} catch {
|
||||
throw new Error(
|
||||
`Twenty server is not reachable at ${apiUrl}. ` +
|
||||
'Make sure the server is running before executing integration tests.',
|
||||
);
|
||||
}
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`Server at ${apiUrl} returned ${response.status}`);
|
||||
}
|
||||
}
|
||||
|
||||
function writeConfig(apiUrl: string, apiKey: string) {
|
||||
const payload = JSON.stringify(
|
||||
{
|
||||
remotes: {
|
||||
local: { apiUrl, apiKey, accessToken: apiKey },
|
||||
},
|
||||
defaultRemote: 'local',
|
||||
},
|
||||
null,
|
||||
2,
|
||||
);
|
||||
|
||||
fs.mkdirSync(CONFIG_DIR, { recursive: true });
|
||||
fs.writeFileSync(path.join(CONFIG_DIR, 'config.test.json'), payload);
|
||||
}
|
||||
|
||||
export async function setup() {
|
||||
const { apiUrl, apiKey } = validateEnv();
|
||||
|
||||
await checkServer(apiUrl);
|
||||
|
||||
writeConfig(apiUrl, apiKey);
|
||||
|
||||
await appUninstall({ appPath: APP_PATH }).catch(() => {});
|
||||
|
||||
const result = await appDevOnce({
|
||||
appPath: APP_PATH,
|
||||
onProgress: (message: string) => console.log(`[dev] ${message}`),
|
||||
});
|
||||
|
||||
if (!result.success) {
|
||||
throw new Error(
|
||||
`Dev sync failed: ${result.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export async function teardown() {
|
||||
const uninstallResult = await appUninstall({ appPath: APP_PATH });
|
||||
|
||||
if (!uninstallResult.success) {
|
||||
console.warn(
|
||||
`App uninstall failed: ${uninstallResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
}
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
import { CoreApiClient } from 'twenty-client-sdk/core';
|
||||
import { MetadataApiClient } from 'twenty-client-sdk/metadata';
|
||||
import { APPLICATION_UNIVERSAL_IDENTIFIER } from 'src/constants/universal-identifiers';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
|
||||
describe('App installation', () => {
|
||||
it('should find the installed app in the applications list', async () => {
|
||||
const client = new MetadataApiClient();
|
||||
|
||||
const result = await client.query({
|
||||
findManyApplications: {
|
||||
id: true,
|
||||
name: true,
|
||||
universalIdentifier: true,
|
||||
},
|
||||
});
|
||||
|
||||
const app = result.findManyApplications.find(
|
||||
(a: { universalIdentifier: string }) =>
|
||||
a.universalIdentifier === APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
);
|
||||
|
||||
expect(app).toBeDefined();
|
||||
});
|
||||
});
|
||||
|
||||
describe('CoreApiClient', () => {
|
||||
it('should support CRUD on standard objects', async () => {
|
||||
const client = new CoreApiClient();
|
||||
|
||||
const created = await client.mutation({
|
||||
createNote: {
|
||||
__args: { data: { title: 'Integration test note' } },
|
||||
id: true,
|
||||
},
|
||||
});
|
||||
expect(created.createNote.id).toBeDefined();
|
||||
|
||||
await client.mutation({
|
||||
destroyNote: {
|
||||
__args: { id: created.createNote.id },
|
||||
id: true,
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,53 +0,0 @@
|
||||
import * as fs from 'fs';
|
||||
import * as os from 'os';
|
||||
import * as path from 'path';
|
||||
import { beforeAll } from 'vitest';
|
||||
|
||||
const CONFIG_DIR = path.join(os.homedir(), '.twenty');
|
||||
const CONFIG_PATH = path.join(CONFIG_DIR, 'config.test.json');
|
||||
|
||||
beforeAll(async () => {
|
||||
const apiUrl = process.env.TWENTY_API_URL!;
|
||||
const token = process.env.TWENTY_API_KEY!;
|
||||
|
||||
if (!apiUrl || !token) {
|
||||
throw new Error(
|
||||
'TWENTY_API_URL and TWENTY_API_KEY must be set.\n' +
|
||||
'Start a local server: yarn twenty server start\n' +
|
||||
'Or set them in vitest env config.',
|
||||
);
|
||||
}
|
||||
|
||||
let response: Response;
|
||||
|
||||
try {
|
||||
response = await fetch(`${apiUrl}/healthz`);
|
||||
} catch {
|
||||
throw new Error(
|
||||
`Twenty server is not reachable at ${apiUrl}. ` +
|
||||
'Make sure the server is running before executing integration tests.',
|
||||
);
|
||||
}
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`Server at ${apiUrl} returned ${response.status}`);
|
||||
}
|
||||
|
||||
fs.mkdirSync(CONFIG_DIR, { recursive: true });
|
||||
|
||||
fs.writeFileSync(
|
||||
CONFIG_PATH,
|
||||
JSON.stringify(
|
||||
{
|
||||
remotes: {
|
||||
local: { apiUrl, apiKey: token },
|
||||
},
|
||||
defaultRemote: 'local',
|
||||
},
|
||||
null,
|
||||
2,
|
||||
),
|
||||
);
|
||||
|
||||
process.env.TWENTY_APP_ACCESS_TOKEN ??= token;
|
||||
});
|
||||
@@ -1,6 +1,15 @@
|
||||
import tsconfigPaths from 'vite-tsconfig-paths';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
const TWENTY_API_URL = process.env.TWENTY_API_URL ?? 'http://localhost:2020';
|
||||
const TWENTY_API_KEY =
|
||||
process.env.TWENTY_API_KEY ??
|
||||
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC0xYzI1LTRkMDItYmYyNS02YWVjY2Y3ZWE0MTkiLCJ0eXBlIjoiQVBJX0tFWSIsIndvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWMyNS00ZDAyLWJmMjUtNmFlY2NmN2VhNDE5IiwiaWF0IjoxNzM1Njg5NjAwLCJleHAiOjQ4OTE0NDk2MDAsImp0aSI6IjIwMjAyMDIwLWY0MDEtNGQ4YS1hNzMxLTY0ZDAwN2MyN2JhZCJ9.bfQjfyN0NEtTCLE_xPyNcwonDzlSXFoP8kdCQTdnuDc';
|
||||
|
||||
// Make env vars available to globalSetup (test.env only applies to workers)
|
||||
process.env.TWENTY_API_URL = TWENTY_API_URL;
|
||||
process.env.TWENTY_API_KEY = TWENTY_API_KEY;
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
tsconfigPaths({
|
||||
@@ -11,13 +20,12 @@ export default defineConfig({
|
||||
test: {
|
||||
testTimeout: 120_000,
|
||||
hookTimeout: 120_000,
|
||||
fileParallelism: false,
|
||||
include: ['src/**/*.integration-test.ts'],
|
||||
setupFiles: ['src/__tests__/setup-test.ts'],
|
||||
globalSetup: ['src/__tests__/global-setup.ts'],
|
||||
env: {
|
||||
TWENTY_API_URL: process.env.TWENTY_API_URL ?? 'http://localhost:2020',
|
||||
TWENTY_API_KEY:
|
||||
process.env.TWENTY_API_KEY ??
|
||||
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC0xYzI1LTRkMDItYmYyNS02YWVjY2Y3ZWE0MTkiLCJ0eXBlIjoiQVBJX0tFWSIsIndvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWMyNS00ZDAyLWJmMjUtNmFlY2NmN2VhNDE5IiwiaWF0IjoxNzM1Njg5NjAwLCJleHAiOjQ4OTE0NDk2MDAsImp0aSI6IjIwMjAyMDIwLWY0MDEtNGQ4YS1hNzMxLTY0ZDAwN2MyN2JhZCJ9.bfQjfyN0NEtTCLE_xPyNcwonDzlSXFoP8kdCQTdnuDc',
|
||||
TWENTY_API_URL,
|
||||
TWENTY_API_KEY,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
@@ -1,72 +0,0 @@
|
||||
import { APPLICATION_UNIVERSAL_IDENTIFIER } from 'src/application.config';
|
||||
import { appBuild, appDeploy, appInstall, appUninstall } from 'twenty-sdk/cli';
|
||||
import { MetadataApiClient } from 'twenty-client-sdk/metadata';
|
||||
import { afterAll, beforeAll, describe, expect, it } from 'vitest';
|
||||
|
||||
const APP_PATH = process.cwd();
|
||||
|
||||
describe('App installation', () => {
|
||||
beforeAll(async () => {
|
||||
const buildResult = await appBuild({
|
||||
appPath: APP_PATH,
|
||||
tarball: true,
|
||||
onProgress: (message: string) => console.log(`[build] ${message}`),
|
||||
});
|
||||
|
||||
if (!buildResult.success) {
|
||||
throw new Error(
|
||||
`Build failed: ${buildResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
|
||||
const deployResult = await appDeploy({
|
||||
tarballPath: buildResult.data.tarballPath!,
|
||||
onProgress: (message: string) => console.log(`[deploy] ${message}`),
|
||||
});
|
||||
|
||||
if (!deployResult.success) {
|
||||
throw new Error(
|
||||
`Deploy failed: ${deployResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
|
||||
const installResult = await appInstall({ appPath: APP_PATH });
|
||||
|
||||
if (!installResult.success) {
|
||||
throw new Error(
|
||||
`Install failed: ${installResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
afterAll(async () => {
|
||||
const uninstallResult = await appUninstall({ appPath: APP_PATH });
|
||||
|
||||
if (!uninstallResult.success) {
|
||||
console.warn(
|
||||
`App uninstall failed: ${
|
||||
uninstallResult.error?.message ?? 'Unknown error'
|
||||
}`,
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
it('should find the installed app in the applications list', async () => {
|
||||
const metadataClient = new MetadataApiClient();
|
||||
|
||||
const result = await metadataClient.query({
|
||||
findManyApplications: {
|
||||
id: true,
|
||||
name: true,
|
||||
universalIdentifier: true,
|
||||
},
|
||||
});
|
||||
|
||||
const installedApp = result.findManyApplications.find(
|
||||
(application: { universalIdentifier: string }) =>
|
||||
application.universalIdentifier === APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
);
|
||||
|
||||
expect(installedApp).toBeDefined();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,87 @@
|
||||
import * as fs from 'fs';
|
||||
import * as os from 'os';
|
||||
import * as path from 'path';
|
||||
|
||||
import { appDevOnce, appUninstall } from 'twenty-sdk/cli';
|
||||
|
||||
const APP_PATH = process.cwd();
|
||||
const CONFIG_DIR = path.join(os.homedir(), '.twenty');
|
||||
|
||||
function validateEnv(): { apiUrl: string; apiKey: string } {
|
||||
const apiUrl = process.env.TWENTY_API_URL;
|
||||
const apiKey = process.env.TWENTY_API_KEY;
|
||||
|
||||
if (!apiUrl || !apiKey) {
|
||||
throw new Error(
|
||||
'TWENTY_API_URL and TWENTY_API_KEY must be set.\n' +
|
||||
'Start a local server: yarn twenty server start\n' +
|
||||
'Or set them in vitest env config.',
|
||||
);
|
||||
}
|
||||
|
||||
return { apiUrl, apiKey };
|
||||
}
|
||||
|
||||
async function checkServer(apiUrl: string) {
|
||||
let response: Response;
|
||||
|
||||
try {
|
||||
response = await fetch(`${apiUrl}/healthz`);
|
||||
} catch {
|
||||
throw new Error(
|
||||
`Twenty server is not reachable at ${apiUrl}. ` +
|
||||
'Make sure the server is running before executing integration tests.',
|
||||
);
|
||||
}
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`Server at ${apiUrl} returned ${response.status}`);
|
||||
}
|
||||
}
|
||||
|
||||
function writeConfig(apiUrl: string, apiKey: string) {
|
||||
const payload = JSON.stringify(
|
||||
{
|
||||
remotes: {
|
||||
local: { apiUrl, apiKey, accessToken: apiKey },
|
||||
},
|
||||
defaultRemote: 'local',
|
||||
},
|
||||
null,
|
||||
2,
|
||||
);
|
||||
|
||||
fs.mkdirSync(CONFIG_DIR, { recursive: true });
|
||||
fs.writeFileSync(path.join(CONFIG_DIR, 'config.test.json'), payload);
|
||||
}
|
||||
|
||||
export async function setup() {
|
||||
const { apiUrl, apiKey } = validateEnv();
|
||||
|
||||
await checkServer(apiUrl);
|
||||
|
||||
writeConfig(apiUrl, apiKey);
|
||||
|
||||
await appUninstall({ appPath: APP_PATH }).catch(() => {});
|
||||
|
||||
const result = await appDevOnce({
|
||||
appPath: APP_PATH,
|
||||
onProgress: (message: string) => console.log(`[dev] ${message}`),
|
||||
});
|
||||
|
||||
if (!result.success) {
|
||||
throw new Error(
|
||||
`Dev sync failed: ${result.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export async function teardown() {
|
||||
const uninstallResult = await appUninstall({ appPath: APP_PATH });
|
||||
|
||||
if (!uninstallResult.success) {
|
||||
console.warn(
|
||||
`App uninstall failed: ${uninstallResult.error?.message ?? 'Unknown error'}`,
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,63 @@
|
||||
import { MetadataApiClient } from 'twenty-client-sdk/metadata';
|
||||
import { APPLICATION_UNIVERSAL_IDENTIFIER } from 'src/application.config';
|
||||
import { describe, expect, it } from 'vitest';
|
||||
|
||||
describe('App installation', () => {
|
||||
it('should find the installed app in the applications list', async () => {
|
||||
const client = new MetadataApiClient();
|
||||
|
||||
const result = await client.query({
|
||||
findManyApplications: {
|
||||
id: true,
|
||||
name: true,
|
||||
universalIdentifier: true,
|
||||
},
|
||||
});
|
||||
|
||||
const app = result.findManyApplications.find(
|
||||
(a: { universalIdentifier: string }) =>
|
||||
a.universalIdentifier === APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
);
|
||||
|
||||
expect(app).toBeDefined();
|
||||
});
|
||||
});
|
||||
|
||||
describe('PostCard object', () => {
|
||||
it('should exist with expected fields and relations', async () => {
|
||||
const client = new MetadataApiClient();
|
||||
|
||||
const { objects } = await client.query({
|
||||
objects: {
|
||||
__args: {
|
||||
filter: { isCustom: { is: true } },
|
||||
paging: { first: 50 },
|
||||
},
|
||||
edges: {
|
||||
node: {
|
||||
nameSingular: true,
|
||||
fields: {
|
||||
__args: { paging: { first: 500 } },
|
||||
edges: { node: { name: true } },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
const obj = objects.edges
|
||||
.map((e: { node: { nameSingular: string } }) => e.node)
|
||||
.find((n: { nameSingular: string }) => n.nameSingular === 'postCard');
|
||||
expect(obj).toBeDefined();
|
||||
|
||||
const names = obj!.fields.edges.map(
|
||||
(e: { node: { name: string } }) => e.node.name,
|
||||
);
|
||||
expect(names).toContain('name');
|
||||
expect(names).toContain('content');
|
||||
expect(names).toContain('status');
|
||||
expect(names).toContain('deliveredAt');
|
||||
expect(names).toContain('recipient');
|
||||
});
|
||||
|
||||
});
|
||||
@@ -1,53 +0,0 @@
|
||||
import * as fs from 'fs';
|
||||
import * as os from 'os';
|
||||
import * as path from 'path';
|
||||
import { beforeAll } from 'vitest';
|
||||
|
||||
const CONFIG_DIR = path.join(os.homedir(), '.twenty');
|
||||
const CONFIG_PATH = path.join(CONFIG_DIR, 'config.test.json');
|
||||
|
||||
beforeAll(async () => {
|
||||
const apiUrl = process.env.TWENTY_API_URL!;
|
||||
const token = process.env.TWENTY_API_KEY!;
|
||||
|
||||
if (!apiUrl || !token) {
|
||||
throw new Error(
|
||||
'TWENTY_API_URL and TWENTY_API_KEY must be set.\n' +
|
||||
'Start a local server: yarn twenty server start\n' +
|
||||
'Or set them in vitest env config.',
|
||||
);
|
||||
}
|
||||
|
||||
let response: Response;
|
||||
|
||||
try {
|
||||
response = await fetch(`${apiUrl}/healthz`);
|
||||
} catch {
|
||||
throw new Error(
|
||||
`Twenty server is not reachable at ${apiUrl}. ` +
|
||||
'Make sure the server is running before executing integration tests.',
|
||||
);
|
||||
}
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error(`Server at ${apiUrl} returned ${response.status}`);
|
||||
}
|
||||
|
||||
fs.mkdirSync(CONFIG_DIR, { recursive: true });
|
||||
|
||||
fs.writeFileSync(
|
||||
CONFIG_PATH,
|
||||
JSON.stringify(
|
||||
{
|
||||
remotes: {
|
||||
local: { apiUrl, apiKey: token },
|
||||
},
|
||||
defaultRemote: 'local',
|
||||
},
|
||||
null,
|
||||
2,
|
||||
),
|
||||
);
|
||||
|
||||
process.env.TWENTY_APP_ACCESS_TOKEN ??= token;
|
||||
});
|
||||
@@ -1,6 +1,15 @@
|
||||
import tsconfigPaths from 'vite-tsconfig-paths';
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
const TWENTY_API_URL = process.env.TWENTY_API_URL ?? 'http://localhost:2020';
|
||||
const TWENTY_API_KEY =
|
||||
process.env.TWENTY_API_KEY ??
|
||||
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC0xYzI1LTRkMDItYmYyNS02YWVjY2Y3ZWE0MTkiLCJ0eXBlIjoiQVBJX0tFWSIsIndvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWMyNS00ZDAyLWJmMjUtNmFlY2NmN2VhNDE5IiwiaWF0IjoxNzM1Njg5NjAwLCJleHAiOjQ4OTE0NDk2MDAsImp0aSI6IjIwMjAyMDIwLWY0MDEtNGQ4YS1hNzMxLTY0ZDAwN2MyN2JhZCJ9.bfQjfyN0NEtTCLE_xPyNcwonDzlSXFoP8kdCQTdnuDc';
|
||||
|
||||
// Make env vars available to globalSetup (test.env only applies to workers)
|
||||
process.env.TWENTY_API_URL = TWENTY_API_URL;
|
||||
process.env.TWENTY_API_KEY = TWENTY_API_KEY;
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
tsconfigPaths({
|
||||
@@ -11,13 +20,12 @@ export default defineConfig({
|
||||
test: {
|
||||
testTimeout: 120_000,
|
||||
hookTimeout: 120_000,
|
||||
fileParallelism: false,
|
||||
include: ['src/**/*.integration-test.ts'],
|
||||
setupFiles: ['src/__tests__/setup-test.ts'],
|
||||
globalSetup: ['src/__tests__/global-setup.ts'],
|
||||
env: {
|
||||
TWENTY_API_URL: process.env.TWENTY_API_URL ?? 'http://localhost:2020',
|
||||
TWENTY_API_KEY:
|
||||
process.env.TWENTY_API_KEY ??
|
||||
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIyMDIwMjAyMC0xYzI1LTRkMDItYmYyNS02YWVjY2Y3ZWE0MTkiLCJ0eXBlIjoiQVBJX0tFWSIsIndvcmtzcGFjZUlkIjoiMjAyMDIwMjAtMWMyNS00ZDAyLWJmMjUtNmFlY2NmN2VhNDE5IiwiaWF0IjoxNzM1Njg5NjAwLCJleHAiOjQ4OTE0NDk2MDAsImp0aSI6IjIwMjAyMDIwLWY0MDEtNGQ4YS1hNzMxLTY0ZDAwN2MyN2JhZCJ9.bfQjfyN0NEtTCLE_xPyNcwonDzlSXFoP8kdCQTdnuDc',
|
||||
TWENTY_API_URL,
|
||||
TWENTY_API_KEY,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
@@ -583,6 +583,7 @@ type ViewField {
|
||||
workspaceId: UUID!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
isActive: Boolean!
|
||||
deletedAt: DateTime
|
||||
isOverridden: Boolean @deprecated(reason: "isOverridden is deprecated")
|
||||
}
|
||||
@@ -691,6 +692,7 @@ type ViewFieldGroup {
|
||||
workspaceId: UUID!
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
isActive: Boolean!
|
||||
deletedAt: DateTime
|
||||
viewFields: [ViewField!]!
|
||||
isOverridden: Boolean! @deprecated(reason: "isOverridden is deprecated")
|
||||
@@ -899,6 +901,7 @@ type PageLayoutWidget {
|
||||
conditionalAvailabilityExpression: String
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
isActive: Boolean!
|
||||
deletedAt: DateTime
|
||||
isOverridden: Boolean @deprecated(reason: "isOverridden is deprecated")
|
||||
}
|
||||
@@ -1234,6 +1237,7 @@ type PageLayoutTab {
|
||||
layoutMode: PageLayoutTabLayoutMode
|
||||
createdAt: DateTime!
|
||||
updatedAt: DateTime!
|
||||
isActive: Boolean!
|
||||
deletedAt: DateTime
|
||||
isOverridden: Boolean @deprecated(reason: "isOverridden is deprecated")
|
||||
}
|
||||
@@ -1592,7 +1596,6 @@ enum FeatureFlagKey {
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED
|
||||
IS_RICH_TEXT_V1_MIGRATED
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED
|
||||
IS_DATASOURCE_MIGRATED
|
||||
}
|
||||
|
||||
@@ -2194,30 +2197,18 @@ type DeletedWorkspaceMember {
|
||||
userWorkspaceId: UUID
|
||||
}
|
||||
|
||||
type BillingEntitlement {
|
||||
key: BillingEntitlementKey!
|
||||
value: Boolean!
|
||||
type Relation {
|
||||
type: RelationType!
|
||||
sourceObjectMetadata: Object!
|
||||
targetObjectMetadata: Object!
|
||||
sourceFieldMetadata: Field!
|
||||
targetFieldMetadata: Field!
|
||||
}
|
||||
|
||||
enum BillingEntitlementKey {
|
||||
SSO
|
||||
CUSTOM_DOMAIN
|
||||
RLS
|
||||
AUDIT_LOGS
|
||||
}
|
||||
|
||||
type DomainRecord {
|
||||
validationType: String!
|
||||
type: String!
|
||||
status: String!
|
||||
key: String!
|
||||
value: String!
|
||||
}
|
||||
|
||||
type DomainValidRecords {
|
||||
id: UUID!
|
||||
domain: String!
|
||||
records: [DomainRecord!]!
|
||||
"""Relation type"""
|
||||
enum RelationType {
|
||||
ONE_TO_MANY
|
||||
MANY_TO_ONE
|
||||
}
|
||||
|
||||
type IndexEdge {
|
||||
@@ -2319,25 +2310,6 @@ type ObjectFieldsConnection {
|
||||
edges: [FieldEdge!]!
|
||||
}
|
||||
|
||||
type UpsertRowLevelPermissionPredicatesResult {
|
||||
predicates: [RowLevelPermissionPredicate!]!
|
||||
predicateGroups: [RowLevelPermissionPredicateGroup!]!
|
||||
}
|
||||
|
||||
type Relation {
|
||||
type: RelationType!
|
||||
sourceObjectMetadata: Object!
|
||||
targetObjectMetadata: Object!
|
||||
sourceFieldMetadata: Field!
|
||||
targetFieldMetadata: Field!
|
||||
}
|
||||
|
||||
"""Relation type"""
|
||||
enum RelationType {
|
||||
ONE_TO_MANY
|
||||
MANY_TO_ONE
|
||||
}
|
||||
|
||||
type FieldConnection {
|
||||
"""Paging information"""
|
||||
pageInfo: PageInfo!
|
||||
@@ -2346,6 +2318,37 @@ type FieldConnection {
|
||||
edges: [FieldEdge!]!
|
||||
}
|
||||
|
||||
type BillingEntitlement {
|
||||
key: BillingEntitlementKey!
|
||||
value: Boolean!
|
||||
}
|
||||
|
||||
enum BillingEntitlementKey {
|
||||
SSO
|
||||
CUSTOM_DOMAIN
|
||||
RLS
|
||||
AUDIT_LOGS
|
||||
}
|
||||
|
||||
type DomainRecord {
|
||||
validationType: String!
|
||||
type: String!
|
||||
status: String!
|
||||
key: String!
|
||||
value: String!
|
||||
}
|
||||
|
||||
type DomainValidRecords {
|
||||
id: UUID!
|
||||
domain: String!
|
||||
records: [DomainRecord!]!
|
||||
}
|
||||
|
||||
type UpsertRowLevelPermissionPredicatesResult {
|
||||
predicates: [RowLevelPermissionPredicate!]!
|
||||
predicateGroups: [RowLevelPermissionPredicateGroup!]!
|
||||
}
|
||||
|
||||
type AuthToken {
|
||||
token: String!
|
||||
expiresAt: DateTime!
|
||||
|
||||
@@ -415,6 +415,7 @@ export interface ViewField {
|
||||
workspaceId: Scalars['UUID']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
isActive: Scalars['Boolean']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: Scalars['Boolean']
|
||||
@@ -492,6 +493,7 @@ export interface ViewFieldGroup {
|
||||
workspaceId: Scalars['UUID']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
isActive: Scalars['Boolean']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
viewFields: ViewField[]
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
@@ -674,6 +676,7 @@ export interface PageLayoutWidget {
|
||||
conditionalAvailabilityExpression?: Scalars['String']
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
isActive: Scalars['Boolean']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: Scalars['Boolean']
|
||||
@@ -959,6 +962,7 @@ export interface PageLayoutTab {
|
||||
layoutMode?: PageLayoutTabLayoutMode
|
||||
createdAt: Scalars['DateTime']
|
||||
updatedAt: Scalars['DateTime']
|
||||
isActive: Scalars['Boolean']
|
||||
deletedAt?: Scalars['DateTime']
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: Scalars['Boolean']
|
||||
@@ -1289,7 +1293,7 @@ export interface FeatureFlag {
|
||||
__typename: 'FeatureFlag'
|
||||
}
|
||||
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_RECORD_TABLE_WIDGET_ENABLED' | 'IS_DATASOURCE_MIGRATED'
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_MARKETPLACE_SETTING_TAB_VISIBLE' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_DATASOURCE_MIGRATED'
|
||||
|
||||
export interface WorkspaceUrls {
|
||||
customUrl?: Scalars['String']
|
||||
@@ -1879,29 +1883,18 @@ export interface DeletedWorkspaceMember {
|
||||
__typename: 'DeletedWorkspaceMember'
|
||||
}
|
||||
|
||||
export interface BillingEntitlement {
|
||||
key: BillingEntitlementKey
|
||||
value: Scalars['Boolean']
|
||||
__typename: 'BillingEntitlement'
|
||||
export interface Relation {
|
||||
type: RelationType
|
||||
sourceObjectMetadata: Object
|
||||
targetObjectMetadata: Object
|
||||
sourceFieldMetadata: Field
|
||||
targetFieldMetadata: Field
|
||||
__typename: 'Relation'
|
||||
}
|
||||
|
||||
export type BillingEntitlementKey = 'SSO' | 'CUSTOM_DOMAIN' | 'RLS' | 'AUDIT_LOGS'
|
||||
|
||||
export interface DomainRecord {
|
||||
validationType: Scalars['String']
|
||||
type: Scalars['String']
|
||||
status: Scalars['String']
|
||||
key: Scalars['String']
|
||||
value: Scalars['String']
|
||||
__typename: 'DomainRecord'
|
||||
}
|
||||
|
||||
export interface DomainValidRecords {
|
||||
id: Scalars['UUID']
|
||||
domain: Scalars['String']
|
||||
records: DomainRecord[]
|
||||
__typename: 'DomainValidRecords'
|
||||
}
|
||||
/** Relation type */
|
||||
export type RelationType = 'ONE_TO_MANY' | 'MANY_TO_ONE'
|
||||
|
||||
export interface IndexEdge {
|
||||
/** The node containing the Index */
|
||||
@@ -2001,25 +1994,6 @@ export interface ObjectFieldsConnection {
|
||||
__typename: 'ObjectFieldsConnection'
|
||||
}
|
||||
|
||||
export interface UpsertRowLevelPermissionPredicatesResult {
|
||||
predicates: RowLevelPermissionPredicate[]
|
||||
predicateGroups: RowLevelPermissionPredicateGroup[]
|
||||
__typename: 'UpsertRowLevelPermissionPredicatesResult'
|
||||
}
|
||||
|
||||
export interface Relation {
|
||||
type: RelationType
|
||||
sourceObjectMetadata: Object
|
||||
targetObjectMetadata: Object
|
||||
sourceFieldMetadata: Field
|
||||
targetFieldMetadata: Field
|
||||
__typename: 'Relation'
|
||||
}
|
||||
|
||||
|
||||
/** Relation type */
|
||||
export type RelationType = 'ONE_TO_MANY' | 'MANY_TO_ONE'
|
||||
|
||||
export interface FieldConnection {
|
||||
/** Paging information */
|
||||
pageInfo: PageInfo
|
||||
@@ -2028,6 +2002,36 @@ export interface FieldConnection {
|
||||
__typename: 'FieldConnection'
|
||||
}
|
||||
|
||||
export interface BillingEntitlement {
|
||||
key: BillingEntitlementKey
|
||||
value: Scalars['Boolean']
|
||||
__typename: 'BillingEntitlement'
|
||||
}
|
||||
|
||||
export type BillingEntitlementKey = 'SSO' | 'CUSTOM_DOMAIN' | 'RLS' | 'AUDIT_LOGS'
|
||||
|
||||
export interface DomainRecord {
|
||||
validationType: Scalars['String']
|
||||
type: Scalars['String']
|
||||
status: Scalars['String']
|
||||
key: Scalars['String']
|
||||
value: Scalars['String']
|
||||
__typename: 'DomainRecord'
|
||||
}
|
||||
|
||||
export interface DomainValidRecords {
|
||||
id: Scalars['UUID']
|
||||
domain: Scalars['String']
|
||||
records: DomainRecord[]
|
||||
__typename: 'DomainValidRecords'
|
||||
}
|
||||
|
||||
export interface UpsertRowLevelPermissionPredicatesResult {
|
||||
predicates: RowLevelPermissionPredicate[]
|
||||
predicateGroups: RowLevelPermissionPredicateGroup[]
|
||||
__typename: 'UpsertRowLevelPermissionPredicatesResult'
|
||||
}
|
||||
|
||||
export interface AuthToken {
|
||||
token: Scalars['String']
|
||||
expiresAt: Scalars['DateTime']
|
||||
@@ -3631,6 +3635,7 @@ export interface ViewFieldGenqlSelection{
|
||||
workspaceId?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
isActive?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: boolean | number
|
||||
@@ -3705,6 +3710,7 @@ export interface ViewFieldGroupGenqlSelection{
|
||||
workspaceId?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
isActive?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
viewFields?: ViewFieldGenqlSelection
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
@@ -3879,6 +3885,7 @@ export interface PageLayoutWidgetGenqlSelection{
|
||||
conditionalAvailabilityExpression?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
isActive?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: boolean | number
|
||||
@@ -4191,6 +4198,7 @@ export interface PageLayoutTabGenqlSelection{
|
||||
layoutMode?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
updatedAt?: boolean | number
|
||||
isActive?: boolean | number
|
||||
deletedAt?: boolean | number
|
||||
/** @deprecated isOverridden is deprecated */
|
||||
isOverridden?: boolean | number
|
||||
@@ -5149,27 +5157,12 @@ export interface DeletedWorkspaceMemberGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface BillingEntitlementGenqlSelection{
|
||||
key?: boolean | number
|
||||
value?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface DomainRecordGenqlSelection{
|
||||
validationType?: boolean | number
|
||||
export interface RelationGenqlSelection{
|
||||
type?: boolean | number
|
||||
status?: boolean | number
|
||||
key?: boolean | number
|
||||
value?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface DomainValidRecordsGenqlSelection{
|
||||
id?: boolean | number
|
||||
domain?: boolean | number
|
||||
records?: DomainRecordGenqlSelection
|
||||
sourceObjectMetadata?: ObjectGenqlSelection
|
||||
targetObjectMetadata?: ObjectGenqlSelection
|
||||
sourceFieldMetadata?: FieldGenqlSelection
|
||||
targetFieldMetadata?: FieldGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
@@ -5284,23 +5277,6 @@ export interface ObjectFieldsConnectionGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UpsertRowLevelPermissionPredicatesResultGenqlSelection{
|
||||
predicates?: RowLevelPermissionPredicateGenqlSelection
|
||||
predicateGroups?: RowLevelPermissionPredicateGroupGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface RelationGenqlSelection{
|
||||
type?: boolean | number
|
||||
sourceObjectMetadata?: ObjectGenqlSelection
|
||||
targetObjectMetadata?: ObjectGenqlSelection
|
||||
sourceFieldMetadata?: FieldGenqlSelection
|
||||
targetFieldMetadata?: FieldGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface FieldConnectionGenqlSelection{
|
||||
/** Paging information */
|
||||
pageInfo?: PageInfoGenqlSelection
|
||||
@@ -5310,6 +5286,38 @@ export interface FieldConnectionGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface BillingEntitlementGenqlSelection{
|
||||
key?: boolean | number
|
||||
value?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface DomainRecordGenqlSelection{
|
||||
validationType?: boolean | number
|
||||
type?: boolean | number
|
||||
status?: boolean | number
|
||||
key?: boolean | number
|
||||
value?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface DomainValidRecordsGenqlSelection{
|
||||
id?: boolean | number
|
||||
domain?: boolean | number
|
||||
records?: DomainRecordGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UpsertRowLevelPermissionPredicatesResultGenqlSelection{
|
||||
predicates?: RowLevelPermissionPredicateGenqlSelection
|
||||
predicateGroups?: RowLevelPermissionPredicateGroupGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface AuthTokenGenqlSelection{
|
||||
token?: boolean | number
|
||||
expiresAt?: boolean | number
|
||||
@@ -8232,26 +8240,10 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const BillingEntitlement_possibleTypes: string[] = ['BillingEntitlement']
|
||||
export const isBillingEntitlement = (obj?: { __typename?: any } | null): obj is BillingEntitlement => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isBillingEntitlement"')
|
||||
return BillingEntitlement_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const DomainRecord_possibleTypes: string[] = ['DomainRecord']
|
||||
export const isDomainRecord = (obj?: { __typename?: any } | null): obj is DomainRecord => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isDomainRecord"')
|
||||
return DomainRecord_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const DomainValidRecords_possibleTypes: string[] = ['DomainValidRecords']
|
||||
export const isDomainValidRecords = (obj?: { __typename?: any } | null): obj is DomainValidRecords => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isDomainValidRecords"')
|
||||
return DomainValidRecords_possibleTypes.includes(obj.__typename)
|
||||
const Relation_possibleTypes: string[] = ['Relation']
|
||||
export const isRelation = (obj?: { __typename?: any } | null): obj is Relation => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isRelation"')
|
||||
return Relation_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
@@ -8352,22 +8344,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const UpsertRowLevelPermissionPredicatesResult_possibleTypes: string[] = ['UpsertRowLevelPermissionPredicatesResult']
|
||||
export const isUpsertRowLevelPermissionPredicatesResult = (obj?: { __typename?: any } | null): obj is UpsertRowLevelPermissionPredicatesResult => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUpsertRowLevelPermissionPredicatesResult"')
|
||||
return UpsertRowLevelPermissionPredicatesResult_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const Relation_possibleTypes: string[] = ['Relation']
|
||||
export const isRelation = (obj?: { __typename?: any } | null): obj is Relation => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isRelation"')
|
||||
return Relation_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const FieldConnection_possibleTypes: string[] = ['FieldConnection']
|
||||
export const isFieldConnection = (obj?: { __typename?: any } | null): obj is FieldConnection => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isFieldConnection"')
|
||||
@@ -8376,6 +8352,38 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const BillingEntitlement_possibleTypes: string[] = ['BillingEntitlement']
|
||||
export const isBillingEntitlement = (obj?: { __typename?: any } | null): obj is BillingEntitlement => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isBillingEntitlement"')
|
||||
return BillingEntitlement_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const DomainRecord_possibleTypes: string[] = ['DomainRecord']
|
||||
export const isDomainRecord = (obj?: { __typename?: any } | null): obj is DomainRecord => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isDomainRecord"')
|
||||
return DomainRecord_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const DomainValidRecords_possibleTypes: string[] = ['DomainValidRecords']
|
||||
export const isDomainValidRecords = (obj?: { __typename?: any } | null): obj is DomainValidRecords => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isDomainValidRecords"')
|
||||
return DomainValidRecords_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const UpsertRowLevelPermissionPredicatesResult_possibleTypes: string[] = ['UpsertRowLevelPermissionPredicatesResult']
|
||||
export const isUpsertRowLevelPermissionPredicatesResult = (obj?: { __typename?: any } | null): obj is UpsertRowLevelPermissionPredicatesResult => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUpsertRowLevelPermissionPredicatesResult"')
|
||||
return UpsertRowLevelPermissionPredicatesResult_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const AuthToken_possibleTypes: string[] = ['AuthToken']
|
||||
export const isAuthToken = (obj?: { __typename?: any } | null): obj is AuthToken => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isAuthToken"')
|
||||
@@ -9470,7 +9478,6 @@ export const enumFeatureFlagKey = {
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED: 'IS_CONNECTED_ACCOUNT_MIGRATED' as const,
|
||||
IS_RICH_TEXT_V1_MIGRATED: 'IS_RICH_TEXT_V1_MIGRATED' as const,
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED: 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' as const,
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED: 'IS_RECORD_TABLE_WIDGET_ENABLED' as const,
|
||||
IS_DATASOURCE_MIGRATED: 'IS_DATASOURCE_MIGRATED' as const
|
||||
}
|
||||
|
||||
@@ -9577,6 +9584,11 @@ export const enumQueueMetricsTimeRange = {
|
||||
OneHour: 'OneHour' as const
|
||||
}
|
||||
|
||||
export const enumRelationType = {
|
||||
ONE_TO_MANY: 'ONE_TO_MANY' as const,
|
||||
MANY_TO_ONE: 'MANY_TO_ONE' as const
|
||||
}
|
||||
|
||||
export const enumBillingEntitlementKey = {
|
||||
SSO: 'SSO' as const,
|
||||
CUSTOM_DOMAIN: 'CUSTOM_DOMAIN' as const,
|
||||
@@ -9584,11 +9596,6 @@ export const enumBillingEntitlementKey = {
|
||||
AUDIT_LOGS: 'AUDIT_LOGS' as const
|
||||
}
|
||||
|
||||
export const enumRelationType = {
|
||||
ONE_TO_MANY: 'ONE_TO_MANY' as const,
|
||||
MANY_TO_ONE: 'MANY_TO_ONE' as const
|
||||
}
|
||||
|
||||
export const enumEmailingDomainDriver = {
|
||||
AWS_SES: 'AWS_SES' as const
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ export default {
|
||||
209,
|
||||
221,
|
||||
238,
|
||||
255,
|
||||
253,
|
||||
292,
|
||||
293,
|
||||
303,
|
||||
@@ -789,10 +789,10 @@ export default {
|
||||
3
|
||||
],
|
||||
"relation": [
|
||||
254
|
||||
237
|
||||
],
|
||||
"morphRelations": [
|
||||
254
|
||||
237
|
||||
],
|
||||
"object": [
|
||||
46
|
||||
@@ -851,7 +851,7 @@ export default {
|
||||
36
|
||||
],
|
||||
"objectMetadata": [
|
||||
247,
|
||||
245,
|
||||
{
|
||||
"paging": [
|
||||
39,
|
||||
@@ -864,7 +864,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"indexFieldMetadatas": [
|
||||
245,
|
||||
243,
|
||||
{
|
||||
"paging": [
|
||||
39,
|
||||
@@ -1109,7 +1109,7 @@ export default {
|
||||
37
|
||||
],
|
||||
"fields": [
|
||||
252,
|
||||
250,
|
||||
{
|
||||
"paging": [
|
||||
39,
|
||||
@@ -1122,7 +1122,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"indexMetadatas": [
|
||||
250,
|
||||
248,
|
||||
{
|
||||
"paging": [
|
||||
39,
|
||||
@@ -1283,6 +1283,9 @@ export default {
|
||||
"updatedAt": [
|
||||
4
|
||||
],
|
||||
"isActive": [
|
||||
6
|
||||
],
|
||||
"deletedAt": [
|
||||
4
|
||||
],
|
||||
@@ -1456,6 +1459,9 @@ export default {
|
||||
"updatedAt": [
|
||||
4
|
||||
],
|
||||
"isActive": [
|
||||
6
|
||||
],
|
||||
"deletedAt": [
|
||||
4
|
||||
],
|
||||
@@ -1703,7 +1709,7 @@ export default {
|
||||
131
|
||||
],
|
||||
"billingEntitlements": [
|
||||
237
|
||||
252
|
||||
],
|
||||
"hasValidEnterpriseKey": [
|
||||
6
|
||||
@@ -1903,6 +1909,9 @@ export default {
|
||||
"updatedAt": [
|
||||
4
|
||||
],
|
||||
"isActive": [
|
||||
6
|
||||
],
|
||||
"deletedAt": [
|
||||
4
|
||||
],
|
||||
@@ -2561,6 +2570,9 @@ export default {
|
||||
"updatedAt": [
|
||||
4
|
||||
],
|
||||
"isActive": [
|
||||
6
|
||||
],
|
||||
"deletedAt": [
|
||||
4
|
||||
],
|
||||
@@ -4419,9 +4431,179 @@ export default {
|
||||
1
|
||||
]
|
||||
},
|
||||
"Relation": {
|
||||
"type": [
|
||||
238
|
||||
],
|
||||
"sourceObjectMetadata": [
|
||||
46
|
||||
],
|
||||
"targetObjectMetadata": [
|
||||
46
|
||||
],
|
||||
"sourceFieldMetadata": [
|
||||
34
|
||||
],
|
||||
"targetFieldMetadata": [
|
||||
34
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"RelationType": {},
|
||||
"IndexEdge": {
|
||||
"node": [
|
||||
37
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"PageInfo": {
|
||||
"hasNextPage": [
|
||||
6
|
||||
],
|
||||
"hasPreviousPage": [
|
||||
6
|
||||
],
|
||||
"startCursor": [
|
||||
40
|
||||
],
|
||||
"endCursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexConnection": {
|
||||
"pageInfo": [
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
239
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexFieldEdge": {
|
||||
"node": [
|
||||
36
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexIndexFieldMetadatasConnection": {
|
||||
"pageInfo": [
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
242
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectEdge": {
|
||||
"node": [
|
||||
46
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexObjectMetadataConnection": {
|
||||
"pageInfo": [
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
244
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectRecordCount": {
|
||||
"objectNamePlural": [
|
||||
1
|
||||
],
|
||||
"totalCount": [
|
||||
21
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectConnection": {
|
||||
"pageInfo": [
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
244
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectIndexMetadatasConnection": {
|
||||
"pageInfo": [
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
239
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"FieldEdge": {
|
||||
"node": [
|
||||
34
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectFieldsConnection": {
|
||||
"pageInfo": [
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
249
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"FieldConnection": {
|
||||
"pageInfo": [
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
249
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"BillingEntitlement": {
|
||||
"key": [
|
||||
238
|
||||
253
|
||||
],
|
||||
"value": [
|
||||
6
|
||||
@@ -4459,145 +4641,7 @@ export default {
|
||||
1
|
||||
],
|
||||
"records": [
|
||||
239
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexEdge": {
|
||||
"node": [
|
||||
37
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"PageInfo": {
|
||||
"hasNextPage": [
|
||||
6
|
||||
],
|
||||
"hasPreviousPage": [
|
||||
6
|
||||
],
|
||||
"startCursor": [
|
||||
40
|
||||
],
|
||||
"endCursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
],
|
||||
"edges": [
|
||||
241
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexFieldEdge": {
|
||||
"node": [
|
||||
36
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexIndexFieldMetadatasConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
],
|
||||
"edges": [
|
||||
244
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectEdge": {
|
||||
"node": [
|
||||
46
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"IndexObjectMetadataConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
],
|
||||
"edges": [
|
||||
246
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectRecordCount": {
|
||||
"objectNamePlural": [
|
||||
1
|
||||
],
|
||||
"totalCount": [
|
||||
21
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
],
|
||||
"edges": [
|
||||
246
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectIndexMetadatasConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
],
|
||||
"edges": [
|
||||
241
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"FieldEdge": {
|
||||
"node": [
|
||||
34
|
||||
],
|
||||
"cursor": [
|
||||
40
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"ObjectFieldsConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
],
|
||||
"edges": [
|
||||
251
|
||||
254
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
@@ -4614,38 +4658,6 @@ export default {
|
||||
1
|
||||
]
|
||||
},
|
||||
"Relation": {
|
||||
"type": [
|
||||
255
|
||||
],
|
||||
"sourceObjectMetadata": [
|
||||
46
|
||||
],
|
||||
"targetObjectMetadata": [
|
||||
46
|
||||
],
|
||||
"sourceFieldMetadata": [
|
||||
34
|
||||
],
|
||||
"targetFieldMetadata": [
|
||||
34
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"RelationType": {},
|
||||
"FieldConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
],
|
||||
"edges": [
|
||||
251
|
||||
],
|
||||
"__typename": [
|
||||
1
|
||||
]
|
||||
},
|
||||
"AuthToken": {
|
||||
"token": [
|
||||
1
|
||||
@@ -5975,7 +5987,7 @@ export default {
|
||||
},
|
||||
"AgentChatThreadConnection": {
|
||||
"pageInfo": [
|
||||
242
|
||||
240
|
||||
],
|
||||
"edges": [
|
||||
335
|
||||
@@ -6582,7 +6594,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"objectRecordCounts": [
|
||||
248
|
||||
246
|
||||
],
|
||||
"object": [
|
||||
46,
|
||||
@@ -6594,7 +6606,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"objects": [
|
||||
249,
|
||||
247,
|
||||
{
|
||||
"paging": [
|
||||
39,
|
||||
@@ -6616,7 +6628,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"indexMetadatas": [
|
||||
243,
|
||||
241,
|
||||
{
|
||||
"paging": [
|
||||
39,
|
||||
@@ -6665,7 +6677,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
256,
|
||||
251,
|
||||
{
|
||||
"paging": [
|
||||
39,
|
||||
@@ -8340,7 +8352,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"upsertRowLevelPermissionPredicates": [
|
||||
253,
|
||||
256,
|
||||
{
|
||||
"input": [
|
||||
456,
|
||||
@@ -9082,7 +9094,7 @@ export default {
|
||||
66
|
||||
],
|
||||
"checkCustomDomainValidRecords": [
|
||||
240
|
||||
255
|
||||
],
|
||||
"createOIDCIdentityProvider": [
|
||||
232,
|
||||
@@ -9415,7 +9427,7 @@ export default {
|
||||
}
|
||||
],
|
||||
"checkPublicDomainValidRecords": [
|
||||
240,
|
||||
255,
|
||||
{
|
||||
"domain": [
|
||||
1,
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ Publishing to npm makes your app discoverable in the Twenty marketplace. Any Twe
|
||||
### Requirements
|
||||
|
||||
- An [npm](https://www.npmjs.com) account
|
||||
- The `twenty-app` keyword in your `package.json` `keywords` array (already included when you scaffold with `create-twenty-app`)
|
||||
- The `twenty-app` keyword in your `package.json` `keywords` array (add it manually — it is not included by default in the `create-twenty-app` template)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ yarn twenty deploy
|
||||
### المتطلبات
|
||||
|
||||
* حساب على [npm](https://www.npmjs.com)
|
||||
* الكلمة المفتاحية `twenty-app` في مصفوفة `keywords` في `package.json` (موجودة مسبقًا عند تهيئة المشروع باستخدام `create-twenty-app`)
|
||||
* الكلمة المفتاحية `twenty-app` في مصفوفة `keywords` في `package.json` (أضفها يدويًا — فهي غير مضمنة افتراضيًا في قالب `create-twenty-app`)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ Publikování na npm zajistí, že bude vaše aplikace dohledatelná v Marketpla
|
||||
### Požadavky
|
||||
|
||||
* Účet na [npm](https://www.npmjs.com)
|
||||
* Klíčové slovo `twenty-app` ve vašem poli `keywords` v souboru `package.json` (již je zahrnuto, když založíte projekt pomocí `create-twenty-app`)
|
||||
* Klíčové slovo `twenty-app` ve vašem poli `keywords` v souboru `package.json` (přidejte je ručně — ve výchozím nastavení není zahrnuto v šabloně `create-twenty-app`)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ Die Veröffentlichung auf npm macht Ihre App im Twenty-Marktplatz auffindbar. Je
|
||||
### Anforderungen
|
||||
|
||||
* Ein [npm](https://www.npmjs.com)-Konto
|
||||
* Das Schlüsselwort `twenty-app` in Ihrem `package.json`-Array `keywords` (bereits enthalten, wenn Sie mit `create-twenty-app` ein Gerüst erstellen)
|
||||
* Das Schlüsselwort `twenty-app` in Ihrem `package.json`-Array `keywords` (manuell hinzufügen — es ist in der `create-twenty-app`-Vorlage standardmäßig nicht enthalten)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ La pubblicazione su npm rende la tua app scopribile nel marketplace di Twenty. Q
|
||||
### Requisiti
|
||||
|
||||
* Un account [npm](https://www.npmjs.com)
|
||||
* La parola chiave `twenty-app` nell'array `keywords` del tuo `package.json` (già inclusa quando inizializzi con `create-twenty-app`)
|
||||
* La parola chiave `twenty-app` nell'array `keywords` del tuo `package.json` (aggiungila manualmente — non è inclusa per impostazione predefinita nel template `create-twenty-app`)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ Publicar no npm torna seu aplicativo descobrível no Marketplace da Twenty. Qual
|
||||
### Requisitos
|
||||
|
||||
* Uma conta no [npm](https://www.npmjs.com)
|
||||
* A palavra-chave `twenty-app` no array `keywords` do seu `package.json` (já incluída quando você cria o projeto com `create-twenty-app`)
|
||||
* A palavra-chave `twenty-app` no array `keywords` do seu `package.json` (adicione-a manualmente — não é incluída por padrão no template `create-twenty-app`)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ When updating an already deployed tarball app, the server requires the `version`
|
||||
### Требования
|
||||
|
||||
* Учётная запись [npm](https://www.npmjs.com)
|
||||
* Ключевое слово `twenty-app` в массиве `keywords` вашего `package.json` (уже добавлено при создании проекта с помощью `create-twenty-app`)
|
||||
* Ключевое слово `twenty-app` в массиве `keywords` вашего `package.json` (добавьте его вручную — по умолчанию оно не включено в шаблон `create-twenty-app`)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -476,7 +476,7 @@ export default defineLogicFunction({
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/post-card/create',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
isAuthRequired: true,
|
||||
},
|
||||
/*databaseEventTriggerSettings: {
|
||||
eventName: 'people.created',
|
||||
|
||||
@@ -87,7 +87,7 @@ npm’ye yayımlamak, uygulamanızın Twenty pazaryerinde keşfedilebilir olmas
|
||||
### Gereksinimler
|
||||
|
||||
* Bir [npm](https://www.npmjs.com) hesabı
|
||||
* `package.json` içindeki `keywords` dizinizdeki `twenty-app` anahtar sözcüğü (`create-twenty-app` ile iskelet oluşturduğunuzda zaten eklenir)
|
||||
* `package.json` içindeki `keywords` dizinizdeki `twenty-app` anahtar sözcüğü (elle ekleyin — varsayılan olarak `create-twenty-app` şablonunda yer almaz)
|
||||
|
||||
```json filename="package.json"
|
||||
{
|
||||
|
||||
@@ -113,13 +113,6 @@ test('Create and update record', async ({ page }) => {
|
||||
await options.getByText('Hybrid').first().click({force: true});
|
||||
recordFieldList.getByText('Work Preference').first().click({force: true});
|
||||
|
||||
// Fill previous companies
|
||||
await recordFieldList.getByText('Previous Companies').first().click({force: true});
|
||||
await recordFieldList.getByText('Previous Companies').nth(1).click({force: true});
|
||||
await page.getByPlaceholder('Search').fill('VMw');
|
||||
await page.getByRole('listbox').first().getByText('VMware').click({force: true});
|
||||
await page.keyboard.press('Escape');
|
||||
|
||||
// Open full record page to get person ID
|
||||
await page.getByRole('button', { name: /^Open/ }).click();
|
||||
await page.waitForURL(/\/object\/person\//);
|
||||
@@ -149,6 +142,5 @@ test('Create and update record', async ({ page }) => {
|
||||
expect(findOnePersonReponseBody.data.person.linkedinLink.primaryLinkUrl).toBe('linkedin.com/johndoe');
|
||||
expect(findOnePersonReponseBody.data.person.phones.primaryPhoneNumber).toBe('611223344');
|
||||
expect(findOnePersonReponseBody.data.person.workPreference).toEqual(['HYBRID']);
|
||||
expect(findOnePersonReponseBody.data.person.previousCompanies.edges[0].node.company.name).toBe('VMware');
|
||||
|
||||
});
|
||||
|
||||
@@ -61,8 +61,8 @@ const jestConfig = {
|
||||
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
||||
coverageThreshold: {
|
||||
global: {
|
||||
statements: 48.4,
|
||||
lines: 47.0,
|
||||
statements: 48,
|
||||
lines: 46,
|
||||
functions: 39.5,
|
||||
},
|
||||
},
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -677,6 +677,11 @@ msgstr "Oor hierdie gebruiker"
|
||||
msgid "About this workspace"
|
||||
msgstr "Oor hierdie werkruimte"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Alle stelselobjekte is reeds in die sybalk"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Alle take aangespreek. Behou die momentum."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Enige {fieldLabel}-veld"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Knipbord vereis 'n veilige verbinding (HTTPS). Gebruik asseblief hierdie
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Maak toe"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Inhoud"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Konteks"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Beskrywing"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Front-end-komponente"
|
||||
msgid "Full access"
|
||||
msgstr "Volle toegang"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Installasie"
|
||||
msgid "Installed"
|
||||
msgstr "Geïnstalleer"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Geïnstalleerde toepassings"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "het 'n e-pos gekoppel met"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Lys geïnstalleerde toepassings. Gebruik die filter om na 'n spesifieke toepassing te soek"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Missie voltooi!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Geen parameters"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Geen betaalmetode gevind nie. Werk asseblief u faktureringsbesonderhede by."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Prent"
|
||||
msgid "Pie Chart"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Plekhouer"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Stuur e-pos weer"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Stel terug"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Herstel 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Herstel na"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Stel as verstek"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Stel as vasgespelde oortjie"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Daar is geen gekoppelde aktiwiteit by hierdie rekord nie."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Daar was 'n fout terwyl die wagwoord opgedateer is."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Hierdie toepassing is op die markplek gelys omdat dit op npm gepubliseer
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Hierdie toepassing is nie op die markplek gelys nie. Dit is via 'n direkte skakel gedeel."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Hierdie week"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Violet"
|
||||
msgid "Visibility"
|
||||
msgstr "Sigbaarheid"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "حول هذا المستخدم"
|
||||
msgid "About this workspace"
|
||||
msgstr "عن مساحة العمل هذه"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "جميع كائنات النظام موجودة بالفعل في الش
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "تم التعامل مع جميع المهام. حافظ على الزخم."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "أي حقل {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "تتطلب الحافظة اتصالاً آمناً (HTTPS). يُرجى
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "إغلاق"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "المحتوى"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "السياق"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "المكوّنات الأمامية"
|
||||
msgid "Full access"
|
||||
msgstr "وصول كامل"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "التثبيت"
|
||||
msgid "Installed"
|
||||
msgstr "مثبت"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "التطبيقات المثبتة"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "ربط رسالة بريد إلكتروني بـ"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "اعرض قائمة التطبيقات المثبتة. استخدم عامل التصفية للبحث عن تطبيق محدد"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "تم إنجاز المهمة!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "لا معلمات"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "لم يتم العثور على وسيلة دفع. يرجى تحديث تفاصيل الفوترة الخاصة بك."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "صورة"
|
||||
msgid "Pie Chart"
|
||||
msgstr "الرسم البياني الدائري"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "نص توضيحي"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "إعادة إرسال البريد الإلكتروني"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "إعادة تعيين"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "إعادة تعيين المصادقة الثنائية"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "تعيين كافتراضي"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "تعيين كعلامة تبويب مثبتة"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "لا توجد أنشطة مرتبطة بهذا السجل."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "حدث خطأ أثناء تحديث كلمة المرور."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "هذا التطبيق مُدرج في السوق لأنه منشور ع
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "هذا التطبيق غير مدرج في سوق التطبيقات. تمت مشاركته عبر رابط مباشر."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "هذا الأسبوع"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "بنفسجي"
|
||||
msgid "Visibility"
|
||||
msgstr "الرؤية"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Sobre aquest usuari"
|
||||
msgid "About this workspace"
|
||||
msgstr "Sobre aquest espai de treball"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Tots els objectes del sistema ja són a la barra lateral"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Totes les tasques ateses. Mantén l'impuls."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Qualsevol camp {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "El porta-retalls requereix una connexió segura (HTTPS). Accedeix a aque
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Contingut"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Components frontals"
|
||||
msgid "Full access"
|
||||
msgstr "Accés complet"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Instal·lació"
|
||||
msgid "Installed"
|
||||
msgstr "Instal·lades"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Aplicacions instal·lades"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "ha enllaçat un correu amb"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Llista les aplicacions instal·lades. Utilitza el filtre per cercar una aplicació concreta"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Missió acomplerta!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Sense paràmetres"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "No s'ha trobat cap mètode de pagament. Si us plau actualitzi les seves dades de facturació."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Fotografia"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Gràfic circular"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Marcador de posició"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Reenviar correu electrònic"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Restableix"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Reinicia 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Reinicia a"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Estableix com a predeterminat"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Defineix com a pestanya fixada"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "No hi ha cap activitat associada amb aquest registre."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "S'ha produït un error en actualitzar la contrasenya."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Aquesta aplicació figura al marketplace perquè està publicada a npm."
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Aquesta aplicació no està publicada al Marketplace. S'ha compartit mitjançant un enllaç directe."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Aquesta setmana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Violeta"
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilitat"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "O tomto uživateli"
|
||||
msgid "About this workspace"
|
||||
msgstr "O tomto pracovním prostoru"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Všechny systémové objekty už jsou v postranním panelu"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Všechny úkoly vyřízeny. Udržujte tempo."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Libovolné pole {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Schránka vyžaduje zabezpečené připojení (HTTPS). Pro povolení kop
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Zavřít"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Obsah"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontext"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Frontendové komponenty"
|
||||
msgid "Full access"
|
||||
msgstr "Plný přístup"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Instalace"
|
||||
msgid "Installed"
|
||||
msgstr "Nainstalováno"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Nainstalované aplikace"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "propojil(a) e-mail s"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Seznam nainstalovaných aplikací. Pomocí filtru vyhledejte konkrétní aplikaci"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Mise splněna!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Žádné parametry"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Nenalezen žádný platební prostředek. Prosím, aktualizujte své fakturační údaje."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Obrázek"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Koláčový graf"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Zástupný text"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Znovu odeslat e-mail"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Obnovit"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Obnovit 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Obnovit na"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Nastavit jako výchozí"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Nastavit jako připnutou kartu"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "S tímto záznamem není spojena žádná aktivita."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Během aktualizace hesla došlo k chybě."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Tato aplikace je uvedena na marketplace, protože je publikována na npm
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Tato aplikace není uvedena na Marketplace. Byla sdílena prostřednictvím přímého odkazu."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Tento týden"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Fialková"
|
||||
msgid "Visibility"
|
||||
msgstr "Viditelnost"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Om denne bruger"
|
||||
msgid "About this workspace"
|
||||
msgstr "Om dette arbejdsområde"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Alle systemobjekter er allerede i sidebjælken"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Alle opgaver er håndteret. Bevar momentum."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Ethvert {fieldLabel}-felt"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Udklipsholderen kræver en sikker forbindelse (HTTPS). Tilgå venligst d
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Luk"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Indhold"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontekst"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Frontkomponenter"
|
||||
msgid "Full access"
|
||||
msgstr "Fuld adgang"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Installation"
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Installerede applikationer"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "linkede en e-mail til"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Vis installerede applikationer. Brug filteret til at søge efter en bestemt applikation"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Mission fuldført!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Ingen parametre"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Ingen betalingsmetode fundet. Opdater venligst dine faktureringsoplysninger."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Billede"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Cirkeldiagram"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Pladsholder"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Send e-mail igen"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Nulstil"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Nulstil 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Nulstil til"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Indstil som standard"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Sæt som fastgjort fane"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Der er ingen aktivitet tilknyttet denne post."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Der opstod en fejl under opdatering af adgangskoden."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14266,6 +14293,11 @@ msgstr "Denne app vises på markedspladsen, fordi den er udgivet på npm."
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Denne applikation er ikke listet på markedspladsen. Den blev delt via et direkte link."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14380,7 +14412,8 @@ msgid "This week"
|
||||
msgstr "Denne uge"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15712,6 +15745,11 @@ msgstr "Violet"
|
||||
msgid "Visibility"
|
||||
msgstr "Synlighed"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Über diesen Benutzer"
|
||||
msgid "About this workspace"
|
||||
msgstr "Über diesen Arbeitsbereich"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Alle Systemobjekte befinden sich bereits in der Seitenleiste"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Alle Aufgaben erledigt. Halten Sie das Tempo."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Beliebiges {fieldLabel}-Feld"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Die Zwischenablage erfordert eine sichere Verbindung (HTTPS). Bitte grei
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Inhalt"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontext"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplikat"
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Frontend-Komponenten"
|
||||
msgid "Full access"
|
||||
msgstr "Vollzugriff"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Installation"
|
||||
msgid "Installed"
|
||||
msgstr "Installiert"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Installierte Anwendungen"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "hat eine E-Mail verknüpft mit"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Installierte Anwendungen auflisten. Verwenden Sie den Filter, um nach einer bestimmten Anwendung zu suchen."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Mission erfüllt!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Keine Parameter"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Keine Zahlungsmethode gefunden. Bitte aktualisieren Sie Ihre Rechnungsdaten."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Bild"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Tortendiagramm"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Platzhalter"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "E-Mail erneut senden"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Zurücksetzen"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "2FA zurücksetzen"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Zurücksetzen auf"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Als Standard festlegen"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Als angehefteten Tab festlegen"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Mit diesem Datensatz ist keine Aktivität verknüpft."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Beim Aktualisieren des Passworts ist ein Fehler aufgetreten."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Diese App ist im Marketplace gelistet, weil sie auf npm veröffentlicht
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Diese Anwendung ist nicht auf dem Marktplatz gelistet. Sie wurde über einen Direktlink freigegeben."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Diese Woche"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Violett"
|
||||
msgid "Visibility"
|
||||
msgstr "Sichtbarkeit"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Σχετικά με αυτόν τον χρήστη"
|
||||
msgid "About this workspace"
|
||||
msgstr "Σχετικά με αυτό το χώρο εργασίας"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Όλα τα αντικείμενα συστήματος βρίσκοντ
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Όλες οι εργασίες αντιμετωπίστηκαν. Διατηρήστε τον ρυθμό."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Οποιοδήποτε πεδίο {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Το Πρόχειρο απαιτεί ασφαλή σύνδεση (HTTPS)
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Κλείσιμο"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Περιεχόμενο"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Περιβάλλον"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Στοιχεία διεπαφής χρήστη"
|
||||
msgid "Full access"
|
||||
msgstr "Πλήρης πρόσβαση"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Εγκατάσταση"
|
||||
msgid "Installed"
|
||||
msgstr "Εγκατεστημένο"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Εγκατεστημένες εφαρμογές"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "συνέδεσε ένα email με"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Προβολή εγκατεστημένων εφαρμογών. Χρησιμοποιήστε το φίλτρο για να αναζητήσετε μια συγκεκριμένη εφαρμογή"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Αποστολή ολοκληρώθηκε!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Χωρίς παραμέτρους"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Δεν βρέθηκε μέθοδος πληρωμής. Ενημερώστε τα στοιχεία χρέωσής σας."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Εικόνα"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Διάγραμμα πίτας"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Κείμενο κράτησης θέσης"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Επαναποστολή email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Επαναφορά"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Επαναφορά 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Επαναφορά σε"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Ορισμός ως προεπιλογή"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Ορισμός ως καρφιτσωμένη καρτέλα"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14178,6 +14200,11 @@ msgstr "Δεν υπάρχει δραστηριότητα που να σχετί
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Παρουσιάστηκε σφάλμα κατά την ενημέρωση του κωδικού πρόσβασης."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14268,6 +14295,11 @@ msgstr "Αυτή η εφαρμογή εμφανίζεται στο marketplace
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Αυτή η εφαρμογή δεν είναι καταχωρημένη στο marketplace. Κοινοποιήθηκε μέσω απευθείας συνδέσμου."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14382,7 +14414,8 @@ msgid "This week"
|
||||
msgstr "Αυτή την εβδομάδα"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15714,6 +15747,11 @@ msgstr "Βιολετί"
|
||||
msgid "Visibility"
|
||||
msgstr "Ορατότητα"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -672,6 +672,11 @@ msgstr "About this user"
|
||||
msgid "About this workspace"
|
||||
msgstr "About this workspace"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr "Access"
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1584,6 +1589,11 @@ msgstr "All system objects are already in the sidebar"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "All tasks addressed. Maintain the momentum."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr "All the applications currently installed on this workspace"
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1796,8 +1806,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Any {fieldLabel} field"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr "Any device"
|
||||
|
||||
@@ -3168,6 +3178,7 @@ msgstr "Clipboard requires a secure connection (HTTPS). Please access this app o
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Close"
|
||||
|
||||
@@ -3558,9 +3569,7 @@ msgid "Content"
|
||||
msgstr "Content"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -4642,7 +4651,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4895,8 +4905,8 @@ msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr "Desktop"
|
||||
|
||||
@@ -5119,7 +5129,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicate"
|
||||
|
||||
@@ -7069,6 +7079,11 @@ msgstr "Front Components"
|
||||
msgid "Full access"
|
||||
msgstr "Full access"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr "Full tab widget"
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7845,10 +7860,10 @@ msgstr "Installation"
|
||||
msgid "Installed"
|
||||
msgstr "Installed"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Installed applications"
|
||||
msgid "Installed apps"
|
||||
msgstr "Installed apps"
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8605,11 +8620,6 @@ msgstr "linked an email with"
|
||||
msgid "list"
|
||||
msgstr "list"
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "List installed applications. Use filter to search for a specific application"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8821,6 +8831,7 @@ msgstr "Make HTTP requests to external APIs"
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr "Manage"
|
||||
|
||||
@@ -9153,8 +9164,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Mission accomplished!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr "Mobile"
|
||||
|
||||
@@ -9303,14 +9314,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10083,6 +10096,11 @@ msgstr "No parameters"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "No payment method found. Please update your billing details."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr "No permission defined for this application"
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11115,6 +11133,11 @@ msgstr "Picture"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Pie Chart"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr "Pin tab"
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11134,6 +11157,7 @@ msgstr "Placeholder"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr "Placement"
|
||||
|
||||
@@ -11995,7 +12019,8 @@ msgstr "Resend email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Reset"
|
||||
|
||||
@@ -12010,16 +12035,13 @@ msgstr "Reset 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr "Reset label to default"
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Reset to"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12993,7 +13015,7 @@ msgid "Set as default"
|
||||
msgstr "Set as default"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Set as pinned tab"
|
||||
|
||||
@@ -13066,7 +13088,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14171,6 +14193,11 @@ msgstr "There is no activity associated with this record."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "There was an error while updating password."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr "These apps are not vetted. Use at your own risk."
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14261,6 +14288,11 @@ msgstr "This app is listed on the marketplace because it is published to npm."
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14375,7 +14407,8 @@ msgid "This week"
|
||||
msgstr "This week"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
|
||||
@@ -15707,6 +15740,11 @@ msgstr "Violet"
|
||||
msgid "Visibility"
|
||||
msgstr "Visibility"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr "Visibility restriction"
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Sobre este usuario"
|
||||
msgid "About this workspace"
|
||||
msgstr "Sobre este espacio de trabajo"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Todos los objetos del sistema ya están en la barra lateral"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Todas las tareas abordadas. Mantén el impulso."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Cualquier campo {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "El portapapeles requiere una conexión segura (HTTPS). Accede a esta apl
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Contenido"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexto"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr "Duplicar"
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Componentes de frontend"
|
||||
msgid "Full access"
|
||||
msgstr "Acceso total"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Instalación"
|
||||
msgid "Installed"
|
||||
msgstr "Instalada"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Aplicaciones instaladas"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "vinculó un correo electrónico con"
|
||||
msgid "list"
|
||||
msgstr "lista"
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Lista las aplicaciones instaladas. Usa el filtro para buscar una aplicación específica"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "¡Misión cumplida!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Sin parámetros"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "No se encontró ningún método de pago. Por favor, actualice sus datos de facturación."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Foto"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Gráfico de pastel"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Marcador de posición"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Reenviar correo electrónico"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Restablecer"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Restablecer 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Restablecer a"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Establecer como predeterminado"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Establecer como pestaña anclada"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "No hay actividad asociada con este registro."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Hubo un error al actualizar la contraseña."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14266,6 +14293,11 @@ msgstr "Esta aplicación aparece en el marketplace porque está publicada en npm
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Esta aplicación no está incluida en el Marketplace. Se compartió mediante un enlace directo."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14380,7 +14412,8 @@ msgid "This week"
|
||||
msgstr "Esta semana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15712,6 +15745,11 @@ msgstr "Violeta"
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilidad"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Tietoa tästä käyttäjästä"
|
||||
msgid "About this workspace"
|
||||
msgstr "Tietoa tästä työtilasta"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr ""
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Kaikki tehtävät käsitelty. Pidä vauhti yllä."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Mikä tahansa {fieldLabel}-kenttä"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Leikepöytä edellyttää suojattua yhteyttä (HTTPS). Avaa tämä sovel
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Sulje"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Sisältö"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Yhteys"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Kuvaus"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Käyttöliittymäkomponentit"
|
||||
msgid "Full access"
|
||||
msgstr "Täysi pääsy"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Asennus"
|
||||
msgid "Installed"
|
||||
msgstr "Asennettu"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Asennetut sovellukset"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "linkitti sähköpostin"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Listaa asennetut sovellukset. Käytä suodatinta tietyn sovelluksen etsimiseen"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Tehtävä suoritettu!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Ei parametreja"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Maksutapaa ei löytynyt. Päivitä laskutustietosi."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Kuva"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Ympyräkaavio"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Paikkamerkki"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Lähetä sähköposti uudelleen"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Nollaa"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Nollaa 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Palauta"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Aseta oletuksena"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Kiinnitä välilehti"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Tähän tietueeseen ei liity aktiivisuutta."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Salasanan päivityksessä tapahtui virhe."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Tämä sovellus on listattuna markkinapaikassa, koska se on julkaistu np
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Tätä sovellusta ei ole listattu markkinapaikassa. Se jaettiin suoran linkin kautta."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Tämä viikko"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Violetti"
|
||||
msgid "Visibility"
|
||||
msgstr "Näkyvyys"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "À propos de cet utilisateur"
|
||||
msgid "About this workspace"
|
||||
msgstr "À propos de cet espace de travail"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Tous les objets système sont déjà dans la barre latérale"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Toutes les tâches ont été traitées. Maintenez l'élan."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Tout champ {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Le presse-papiers nécessite une connexion sécurisée (HTTPS). Veuillez
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Contenu"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexte"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Composants frontaux"
|
||||
msgid "Full access"
|
||||
msgstr "Accès complet"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Installation"
|
||||
msgid "Installed"
|
||||
msgstr "Installée"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Applications installées"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "a lié un e-mail avec"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Répertoriez les applications installées. Utilisez le filtre pour rechercher une application spécifique."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Mission accomplie !"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Aucun paramètre"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Aucun moyen de paiement trouvé. Veuillez mettre à jour vos informations de facturation."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Photo"
|
||||
msgid "Pie Chart"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Espace réservé"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Renvoyer l'email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Réinitialiser"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Réinitialiser 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Réinitialiser à"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Définir comme défaut"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Définir comme onglet épinglé"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Aucune activité n'est associée à cet enregistrement."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Une erreur est survenue lors de la mise à jour du mot de passe."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14266,6 +14293,11 @@ msgstr "Cette application est répertoriée sur la place de marché car elle est
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Cette application n'est pas répertoriée sur la marketplace. Elle a été partagée via un lien direct."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14380,7 +14412,8 @@ msgid "This week"
|
||||
msgstr "Cette semaine"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15712,6 +15745,11 @@ msgstr "Violet"
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilité"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
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
@@ -677,6 +677,11 @@ msgstr "אודות משתמש זה"
|
||||
msgid "About this workspace"
|
||||
msgstr "אודות סביבת עבודה זו"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "כל אובייקטי המערכת כבר נמצאים בסרגל הצד
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "כל המשימות טופלו. שמרו על התנופה."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "כל שדה {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "לוח הגזירים דורש חיבור מאובטח (HTTPS). יש ל
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "סגור"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "תוכן"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "הקשר"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "תיאור"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "רכיבי פרונטאנד"
|
||||
msgid "Full access"
|
||||
msgstr "גישה מלאה"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "התקנה"
|
||||
msgid "Installed"
|
||||
msgstr "מותקן"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "יישומים מותקנים"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "קישר דוא\"ל עם"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "הצג את היישומים המותקנים. השתמש במסנן כדי לחפש יישום מסוים."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "המשימה הושלמה!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "ללא פרמטרים"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "לא נמצאה שיטת תשלום. אנא עדכן את פרטי החיוב שלך."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "תמונה"
|
||||
msgid "Pie Chart"
|
||||
msgstr "תרשים עוגה"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "טקסט מציין מקום"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "שלח שוב את הדוא\"ל"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "איפוס"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "אתחל אימות דו-שלבי"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "הגדר כברירת מחדל"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "הגדר כלשונית מוצמדת"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "אין פעילות מקושרת לרשומה זו."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "אירעה תקלה בעדכון הסיסמה."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "אפליקציה זו מופיעה במרקטפלייס משום שהי
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "אפליקציה זו אינה מופיעה במרקטפלייס. היא שותפה באמצעות קישור ישיר."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "השבוע"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "ויולט"
|
||||
msgid "Visibility"
|
||||
msgstr "נראות"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Erről a felhasználóról"
|
||||
msgid "About this workspace"
|
||||
msgstr "Erről a munkaterületről"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Minden rendszerobjektum már az oldalsávban van"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Minden feladat megoldva. Tartsa a lendületet."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Bármely {fieldLabel} mező"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Bezár"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Tartalom"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Összefüggés"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Leírás"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Front komponensek"
|
||||
msgid "Full access"
|
||||
msgstr "Teljes hozzáférés"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Telepítés"
|
||||
msgid "Installed"
|
||||
msgstr "Telepítve"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Telepített alkalmazások"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "összekapcsolt egy e-mailt ezzel"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "A telepített alkalmazások listája. Használja a szűrőt egy adott alkalmazás kereséséhez"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Küldetés teljesítve!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Nincsenek paraméterek"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Nincs fizetési módszer található. Kérjük, frissítse a számlázási adatait."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Kép"
|
||||
msgid "Pie Chart"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Helyőrző"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "E-mail újraküldése"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Visszaállítás"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "2FA visszaállítása"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Visszaállítás"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ 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
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Beállítás rögzített fülként"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Ehhez a rekordhoz nem tartozik tevékenység."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Hiba történt a jelszó frissítése közben."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Ez az alkalmazás szerepel a piactéren, mert közzé van téve az npm-e
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Ez az alkalmazás nincs listázva a piactéren. Közvetlen linken keresztül lett megosztva."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Ezen a héten"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Ibolya"
|
||||
msgid "Visibility"
|
||||
msgstr "Láthatóság"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Informazioni su questo utente"
|
||||
msgid "About this workspace"
|
||||
msgstr "Informazioni su questo spazio di lavoro"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Tutti gli oggetti di sistema sono già nella barra laterale"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Tutte le attività completate. Mantieni lo slancio."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Qualsiasi campo {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Gli appunti richiedono una connessione sicura (HTTPS). Accedi a questa a
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Contenuto"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contesto"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Componenti front-end"
|
||||
msgid "Full access"
|
||||
msgstr "Accesso completo"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Installazione"
|
||||
msgid "Installed"
|
||||
msgstr "Installata"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Applicazioni installate"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "ha collegato un'email con"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Elenca le applicazioni installate. Usa il filtro per cercare un'applicazione specifica"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Missione compiuta!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Nessun parametro"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Metodo di pagamento non trovato. Si prega di aggiornare i dettagli di fatturazione."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Immagine"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Grafico a Torta"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Segnaposto"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Rinvia email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Reimposta"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Reimposta 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Reimposta a"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Imposta come predefinito"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Imposta come scheda bloccata"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Non ci sono attività associate a questo record."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Errore durante l'aggiornamento della password."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14266,6 +14293,11 @@ msgstr "Questa app è elencata nel marketplace perché è pubblicata su npm."
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Questa applicazione non è elencata nel marketplace. È stata condivisa tramite un link diretto."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14380,7 +14412,8 @@ msgid "This week"
|
||||
msgstr "Questa settimana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15712,6 +15745,11 @@ msgstr "Violetto"
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilità"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "このユーザーについて"
|
||||
msgid "About this workspace"
|
||||
msgstr "このワークスペースについて"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "すべてのシステムオブジェクトはすでにサイドバーに
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "すべてのタスクに対応しました。勢いを維持しましょう。"
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "任意の {fieldLabel} フィールド"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "クリップボードの使用にはセキュアな接続 (HTTPS) が必
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "閉じる"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "コンテンツ"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "コンテキスト"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "説明"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "フロントエンドコンポーネント"
|
||||
msgid "Full access"
|
||||
msgstr "フルアクセス"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "インストール"
|
||||
msgid "Installed"
|
||||
msgstr "インストール済み"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "インストール済みのアプリケーション"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "メールをリンクしました"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "インストール済みのアプリケーションを一覧表示します。フィルターを使って特定のアプリケーションを検索できます。"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "任務完了!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "パラメーターなし"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "お支払い方法が見つかりません。請求先の詳細を更新してください。"
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "写真"
|
||||
msgid "Pie Chart"
|
||||
msgstr "パイチャート"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "プレースホルダー"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "メールを再送信"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "リセット"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "2FAをリセット"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "リセット"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "デフォルトとして設定"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "タブをピン留めする"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "このレコードに関連付けられたアクティビティはあり
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "パスワードの更新中にエラーが発生しました"
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "このアプリは npm に公開されているため、マーケット
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "このアプリケーションはマーケットプレイスに掲載されていません。直接リンクで共有されています。"
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "今週"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "バイオレット"
|
||||
msgid "Visibility"
|
||||
msgstr "可視性"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "이 사용자에 대해"
|
||||
msgid "About this workspace"
|
||||
msgstr "이 작업공간에 대해"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "모든 시스템 개체가 이미 사이드바에 있습니다"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "모든 작업이 처리되었습니다. 이 기세를 유지하세요."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "모든 {fieldLabel} 필드"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "클립보드는 보안 연결(HTTPS)이 필요합니다. 복사 기능
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "닫기"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "내용"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "컨텍스트"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "설명"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "프런트 컴포넌트"
|
||||
msgid "Full access"
|
||||
msgstr "전체 접근"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "설치"
|
||||
msgid "Installed"
|
||||
msgstr "설치됨"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "설치된 애플리케이션"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "다음과 이메일을 연결함"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "설치된 애플리케이션 목록입니다. 특정 애플리케이션을 검색하려면 필터를 사용하세요."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "임무 완료!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "매개변수 없음"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "결제 수단을 찾을 수 없습니다. 청구 정보를 업데이트하세요."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "사진"
|
||||
msgid "Pie Chart"
|
||||
msgstr "파이 차트"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Placeholder"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "이메일 다시 보내기"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "초기화"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "이중 인증 재설정"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "다음으로 재설정"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "기본값으로 설정"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "고정 탭으로 설정"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "이 레코드와 연결된 활동이 없습니다."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "비밀번호 업데이트 중 오류가 발생했습니다."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "이 앱은 npm에 게시되어 있어 마켓플레이스에 표시됩니
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "이 앱은 마켓플레이스에 등재되어 있지 않습니다. 직접 링크로 공유되었습니다."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "이번 주"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "바이올렛"
|
||||
msgid "Visibility"
|
||||
msgstr "가시성"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Over deze gebruiker"
|
||||
msgid "About this workspace"
|
||||
msgstr "Over deze werkruimte"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Alle systeemobjecten staan al in de zijbalk"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Alle taken opgepakt. Houd het momentum vast."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Elk {fieldLabel}-veld"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Sluiten"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Inhoud"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Beschrijving"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Frontendcomponenten"
|
||||
msgid "Full access"
|
||||
msgstr "Volledige toegang"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Installatie"
|
||||
msgid "Installed"
|
||||
msgstr "Geïnstalleerd"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Geïnstalleerde toepassingen"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "heeft een e-mail gekoppeld aan"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Geïnstalleerde toepassingen weergeven. Gebruik het filter om naar een specifieke toepassing te zoeken"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Missie volbracht!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Geen parameters"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Geen betalingsmethode gevonden. Werk uw factureringsgegevens bij."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Afbeelding"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Cirkeldiagram"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Placeholder"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "E-mail opnieuw verzenden"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Resetten"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Reset 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Reset naar"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Instellen als standaard"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Instellen als vastgezet tabblad"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Er is geen activiteit gekoppeld aan dit record."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Er was een fout bij het bijwerken van het wachtwoord."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14266,6 +14293,11 @@ msgstr "Deze app staat op de Marketplace omdat deze is gepubliceerd op npm."
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Deze applicatie is niet vermeld op de Marketplace. Ze is gedeeld via een directe link."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14380,7 +14412,8 @@ msgid "This week"
|
||||
msgstr "Deze week"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15712,6 +15745,11 @@ msgstr "Violet"
|
||||
msgid "Visibility"
|
||||
msgstr "Zichtbaarheid"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Om denne brukeren"
|
||||
msgid "About this workspace"
|
||||
msgstr "Om dette arbeidsområdet"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Alle systemobjekter er allerede i sidepanelet"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Alle oppgaver er håndtert. Hold momentumet oppe."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Ethvert {fieldLabel}-felt"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Utklippstavlen krever en sikker tilkobling (HTTPS). Åpne denne appen ov
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Lukk"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Innhold"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontekst"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Frontkomponenter"
|
||||
msgid "Full access"
|
||||
msgstr "Full tilgang"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,9 +7865,9 @@ msgstr "Installasjon"
|
||||
msgid "Installed"
|
||||
msgstr "Installert"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
@@ -8610,11 +8625,6 @@ msgstr "Knyttet en e-post til"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Oppdrag utført!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Ingen parametere"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Ingen betalingsmetode funnet. Vennligst oppdater faktureringsinformasjonen din."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Bilde"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Sirkeldiagram"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Plassholder"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Send på nytt"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Tilbakestill"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Tilbakestill 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Tilbakestill til"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Sett som standard"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Sett som festet fane"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Det finnes ingen aktivitet knyttet til denne oppføringen."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Det var en feil under oppdatering av passord."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Denne appen er oppført på markedsplassen fordi den er publisert på np
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Denne applikasjonen er ikke oppført på markedsplassen. Den ble delt via en direkte lenke."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Denne uken"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Fiolett"
|
||||
msgid "Visibility"
|
||||
msgstr "Synlighet"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "O tym użytkowniku"
|
||||
msgid "About this workspace"
|
||||
msgstr "O tej przestrzeni roboczej"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Wszystkie obiekty systemowe są już na pasku bocznym"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Wszystkie zadania zostały wykonane. Utrzymaj tempo."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Dowolne pole {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Schowek wymaga bezpiecznego połączenia (HTTPS). Otwórz tę aplikację
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Zawartość"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontekst"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Komponenty frontowe"
|
||||
msgid "Full access"
|
||||
msgstr "Pełny dostęp"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Instalacja"
|
||||
msgid "Installed"
|
||||
msgstr "Zainstalowane"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Zainstalowane aplikacje"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "połączył(-a) e-mail z"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Wyświetl zainstalowane aplikacje. Użyj filtra, aby wyszukać konkretną aplikację"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Misja zakończona!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Brak parametrów"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Nie znaleziono metody płatności. Proszę zaktualizować swoje dane rozliczeniowe."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Zdjęcie"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Wykres kołowy"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Symbol zastępczy"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Wyślij ponownie e-mail"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Zresetuj"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Resetuj 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Zresetuj do"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Ustaw jako domyślne"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Ustaw jako przypiętą kartę"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Z tym rekordem nie jest powiązana żadna aktywność."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Wystąpił błąd podczas aktualizacji hasła."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Ta aplikacja jest dostępna w Marketplace, ponieważ została opublikowa
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Ta aplikacja nie jest widoczna w Marketplace. Udostępniono ją za pomocą bezpośredniego linku."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Ten tydzień"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Fioletowy"
|
||||
msgid "Visibility"
|
||||
msgstr "Widoczność"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -672,6 +672,11 @@ msgstr ""
|
||||
msgid "About this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1584,6 +1589,11 @@ msgstr ""
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1796,8 +1806,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3168,6 +3178,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,9 +3569,7 @@ msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
@@ -4642,7 +4651,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4895,8 +4905,8 @@ msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5119,7 +5129,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7069,6 +7079,11 @@ msgstr ""
|
||||
msgid "Full access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7845,9 +7860,9 @@ msgstr ""
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
@@ -8605,11 +8620,6 @@ msgstr ""
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8821,6 +8831,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9153,8 +9164,8 @@ msgid "Mission accomplished!"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9303,14 +9314,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10083,6 +10096,11 @@ msgstr ""
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11115,6 +11133,11 @@ msgstr ""
|
||||
msgid "Pie Chart"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11134,6 +11157,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -11995,7 +12019,8 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
@@ -12010,16 +12035,13 @@ msgstr ""
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12993,7 +13015,7 @@ msgid "Set as default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr ""
|
||||
|
||||
@@ -13066,7 +13088,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14171,6 +14193,11 @@ msgstr ""
|
||||
msgid "There was an error while updating password."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14259,6 +14286,11 @@ msgstr ""
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14373,7 +14405,8 @@ msgid "This week"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15705,6 +15738,11 @@ msgstr ""
|
||||
msgid "Visibility"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Sobre este usuário"
|
||||
msgid "About this workspace"
|
||||
msgstr "Sobre este espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Todos os objetos do sistema já estão na barra lateral"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Todas as tarefas concluídas. Mantenha o ritmo."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Qualquer campo {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "A área de transferência requer uma conexão segura (HTTPS). Acesse est
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Conteúdo"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexto"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Componentes de front-end"
|
||||
msgid "Full access"
|
||||
msgstr "Acesso total"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Instalação"
|
||||
msgid "Installed"
|
||||
msgstr "Instalado"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Aplicativos instalados"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "vinculou um e-mail com"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Liste os aplicativos instalados. Use o filtro para pesquisar um aplicativo específico."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Missão cumprida!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Sem parâmetros"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Nenhum método de pagamento encontrado. Por favor, atualize suas informações de faturamento."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Imagem"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Gráfico de Pizza"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Placeholder"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Reenviar email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Redefinir"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Redefinir 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Redefinir para"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Definir como padrão"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Definir como aba fixada"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Não há atividade associada a este registro."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Ocorreu um erro ao atualizar a senha."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Este aplicativo está listado no marketplace porque foi publicado no npm
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Este aplicativo não está listado no marketplace. Ele foi compartilhado por um link direto."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Esta semana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Violeta"
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilidade"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Sobre este usuário"
|
||||
msgid "About this workspace"
|
||||
msgstr "Sobre este espaço de trabalho"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Todos os objetos do sistema já estão na barra lateral"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Todas as tarefas tratadas. Mantenha o ritmo."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Qualquer campo {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "A área de transferência requer uma conexão segura (HTTPS). Acesse est
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Fechar"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Conteúdo"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexto"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Componentes de front-end"
|
||||
msgid "Full access"
|
||||
msgstr "Acesso total"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Instalação"
|
||||
msgid "Installed"
|
||||
msgstr "Instaladas"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Aplicações instaladas"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "associou um e-mail com"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Liste as aplicações instaladas. Use o filtro para pesquisar uma aplicação específica"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Missão cumprida!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Nenhum parâmetro"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Nenhum método de pagamento encontrado. Por favor, atualize seus detalhes de cobrança."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Imagem"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Gráfico de Pizza"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Texto de preenchimento"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Reenviar email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Redefinir"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Redefinir 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Redefinir para"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Definir como padrão"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Definir como separador fixado"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Não há atividade associada a este registo."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Ocorreu um erro ao atualizar a palavra-passe."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Este aplicativo está listado no marketplace porque está publicado no n
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Esta aplicação não está listada no Marketplace. Foi partilhada através de um link direto."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Esta semana"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Violeta"
|
||||
msgid "Visibility"
|
||||
msgstr "Visibilidade"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Despre acest utilizator"
|
||||
msgid "About this workspace"
|
||||
msgstr "Despre acest spațiu de lucru"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Toate obiectele de sistem sunt deja în bara laterală"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Toate sarcinile au fost rezolvate. Mențineți ritmul."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Orice câmp {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Clipboardul necesită o conexiune securizată (HTTPS). Accesați aceast
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Închide"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Conținut"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -4647,7 +4656,8 @@ msgstr "șterge"
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Descriere"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,7 @@ msgid "Drop file here..."
|
||||
msgstr "Trageți fișierul aici..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Componente Front"
|
||||
msgid "Full access"
|
||||
msgstr "Acces complet"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Instalare"
|
||||
msgid "Installed"
|
||||
msgstr "Instalat"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Aplicații instalate"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "a asociat un e-mail cu"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Listați aplicațiile instalate. Utilizați filtrul pentru a căuta o aplicație specifică"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Misiune îndeplinită!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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 "Mută la stânga"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Fără parametri"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Nu a fost găsită nicio metodă de plată. Vă rugăm să actualizaţi detaliile de facturare."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Imagine"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Grafic circular"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Text sugestiv"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Retrimite email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Resetează"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Resetează 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Resetează la"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Setează ca implicită"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Setează ca filă fixată"
|
||||
|
||||
@@ -13071,7 +13093,7 @@ msgstr "Configurarea bazei tale de date..."
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Nu există activitate asociată acestei înregistrări."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "A apărut o eroare în timpul actualizării parolei."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Această aplicație este listată în marketplace deoarece este publicat
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Această aplicație nu este listată în marketplace. A fost partajată printr-un link direct."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Săptămâna aceasta"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Violet"
|
||||
msgid "Visibility"
|
||||
msgstr "Vizibilitate"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
Binary file not shown.
@@ -677,6 +677,11 @@ msgstr "О овом кориснику"
|
||||
msgid "About this workspace"
|
||||
msgstr "О овом радном простору"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Сви системски објекти су већ у бочној т
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Сви задаци су решени. Одржите замах."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Било које поље {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Клипборд захтева безбедну везу (HTTPS). Пр
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Затвори"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Садржај"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Контекст"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Фронтенд компоненте"
|
||||
msgid "Full access"
|
||||
msgstr "Потпун приступ"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Инсталација"
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Инсталиране апликације"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "повезао/ла имејл са"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Прикажите инсталиране апликације. Користите филтер да бисте пронашли одређену апликацију."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Мисија завршена!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Нема параметара"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Начин плаћања није пронађен. Молимо вас ажурирајте ваше податке о наплати."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Слика"
|
||||
msgid "Pie Chart"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Плацехолдер"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Поново пошаљи имејл"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Ресетуј"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Ресетујте 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Ресетујте на"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Постави као подразумевано"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Постави као закачен језичак"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Са овим записом нема повезаних активно
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Дошло је до грешке при ажурирању лозинке."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Ова апликација се налази на маркетплеј
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Ова апликација није листирана на маркетплејсу. Подељена је путем директног линка."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Ове недеље"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Љубичаста"
|
||||
msgid "Visibility"
|
||||
msgstr "Видљивост"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Om den här användaren"
|
||||
msgid "About this workspace"
|
||||
msgstr "Om den här arbetsytan"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Alla systemobjekt finns redan i sidofältet"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Alla uppgifter åtgärdade. Behåll tempot."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Vilket {fieldLabel}-fält som helst"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Urklipp kräver en säker anslutning (HTTPS). Öppna den här appen via
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Innehåll"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Sammanhang"
|
||||
@@ -4647,7 +4656,8 @@ msgstr "ta bort"
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,7 @@ msgid "Drop file here..."
|
||||
msgstr "Släpp filen här..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Frontendkomponenter"
|
||||
msgid "Full access"
|
||||
msgstr "Full tillgång"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Installation"
|
||||
msgid "Installed"
|
||||
msgstr "Installerad"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Installerade applikationer"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "länkade ett e-postmeddelande med"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Lista installerade applikationer. Använd filtret för att söka efter en specifik applikation"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Uppdrag slutfört!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9310,14 +9321,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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 "Flytta åt vänster"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10090,6 +10103,11 @@ msgstr "Inga parametrar"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Ingen betalningsmetod hittades. Vänligen uppdatera dina faktureringsuppgifter."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11122,6 +11140,11 @@ msgstr "Bild"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Cirkeldiagram"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11141,6 +11164,7 @@ msgstr "Platshållare"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12002,7 +12026,8 @@ msgstr "Skicka e-post på nytt"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Återställ"
|
||||
|
||||
@@ -12017,16 +12042,13 @@ msgstr "Återställ 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Återställ till"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -13002,7 +13024,7 @@ msgid "Set as default"
|
||||
msgstr "Sätt som standard"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Ange som fäst flik"
|
||||
|
||||
@@ -13075,7 +13097,7 @@ msgstr "Konfigurerar din databas..."
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14182,6 +14204,11 @@ msgstr "Det finns ingen aktivitet kopplad till den här posten."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Det uppstod ett fel vid uppdatering av lösenordet."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14272,6 +14299,11 @@ msgstr "Den här appen listas på marknadsplatsen eftersom den är publicerad p
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Den här appen är inte listad på marknadsplatsen. Den delades via en direktlänk."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14386,7 +14418,8 @@ msgid "This week"
|
||||
msgstr "Denna vecka"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15718,6 +15751,11 @@ msgstr "Violett"
|
||||
msgid "Visibility"
|
||||
msgstr "Synlighet"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Bu kullanıcı hakkında"
|
||||
msgid "About this workspace"
|
||||
msgstr "Bu çalışma alanı hakkında"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Tüm sistem nesneleri zaten kenar çubuğunda"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Tüm görevler ele alındı. İvmeyi koruyun."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Herhangi bir {fieldLabel} alanı"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Pano güvenli bir bağlantı (HTTPS) gerektirir. Kopyalamayı etkinleşt
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Kapat"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "İçerik"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Bağlam"
|
||||
@@ -4647,7 +4656,8 @@ msgstr "sil"
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Açıklama"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,7 @@ msgid "Drop file here..."
|
||||
msgstr "Dosyayı buraya bırakın..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Ön uç bileşenleri"
|
||||
msgid "Full access"
|
||||
msgstr "Tam erişim"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Kurulum"
|
||||
msgid "Installed"
|
||||
msgstr "Yüklü"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Yüklü uygulamalar"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "şununla bir e-postayı ilişkilendirdi"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Yüklü uygulamaları listeleyin. Belirli bir uygulamayı aramak için filtreyi kullanın"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Görev tamamlandı!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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 "Sola taşı"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Parametre yok"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Ödeme yöntemi bulunamadı. Lütfen fatura bilgilerinizi güncelleyin."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Resim"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Pasta Grafiği"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Yer tutucu"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "E-postayı yeniden gönder"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Sıfırla"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "2FA Sıfırla"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Sıfırla"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Varsayılan olarak ayarla"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Sabitlenmiş sekme olarak ayarla"
|
||||
|
||||
@@ -13071,7 +13093,7 @@ msgstr "Veritabanınızı ayarlama..."
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Bu kayıtla ilişkili etkinlik yok."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Şifre güncelleme sırasında bir hata oluştu."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Bu uygulama, npm'de yayımlandığı için pazaryerinde listeleniyor."
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Bu uygulama pazaryerinde listelenmiyor. Doğrudan bir bağlantı aracılığıyla paylaşıldı."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Bu hafta"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Menekşe"
|
||||
msgid "Visibility"
|
||||
msgstr "Görünürlük"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Про цього користувача"
|
||||
msgid "About this workspace"
|
||||
msgstr "Про цей робочий простір"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Усі системні об’єкти вже в бічній пане
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Усі завдання виконано. Зберігайте темп."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Будь-яке поле {fieldLabel}"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Буфер обміну вимагає захищеного з'єдна
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Закрити"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Вміст"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Контекст"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Компоненти фронтенду"
|
||||
msgid "Full access"
|
||||
msgstr "Повний доступ"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Встановлення"
|
||||
msgid "Installed"
|
||||
msgstr "Встановлено"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Встановлені застосунки"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "Пов’язано електронний лист із"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Список встановлених застосунків. Скористайтеся фільтром, щоб знайти конкретний застосунок."
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Місію виконано!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Без параметрів"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Спосіб оплати не знайдено. Будь ласка, оновіть свої платіжні дані."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Зображення"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Кругова діаграма"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Покажчик"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Повторно надіслати лист"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Скинути"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Скинути 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Скинути до"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Встановити як за замовчуванням"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Закріпити вкладку"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "З цим записом не пов’язана жодна актив
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Сталася помилка під час оновлення пароля."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14266,6 +14293,11 @@ msgstr "Цей застосунок відображається на марке
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Цей додаток не опубліковано в маркетплейсі. Його надано за прямим посиланням."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14380,7 +14412,8 @@ msgid "This week"
|
||||
msgstr "Цього тижня"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15712,6 +15745,11 @@ msgstr "Фіалковий"
|
||||
msgid "Visibility"
|
||||
msgstr "Видимість"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "Về người dùng này"
|
||||
msgid "About this workspace"
|
||||
msgstr "Giới thiệu về không gian làm việc này"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "Tất cả các đối tượng hệ thống đều đã có trong thanh
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "Tất cả nhiệm vụ đã được xử lý. Hãy duy trì đà này."
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "Bất kỳ trường {fieldLabel} nào"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "Bộ nhớ tạm yêu cầu kết nối bảo mật (HTTPS). Vui lòng t
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "Đóng"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "Nội dung"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Ngữ cảnh"
|
||||
@@ -4647,7 +4656,8 @@ msgstr "xóa"
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "Mô tả"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,7 @@ msgid "Drop file here..."
|
||||
msgstr "Thả tệp vào đây..."
|
||||
|
||||
#. js-lingui-id: euc6Ns
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "Các thành phần giao diện"
|
||||
msgid "Full access"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "Cài đặt"
|
||||
msgid "Installed"
|
||||
msgstr "Đã cài đặt"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "Ứng dụng đã cài đặt"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "đã liên kết một email với"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "Liệt kê các ứng dụng đã cài đặt. Sử dụng bộ lọc để tìm một ứng dụng cụ thể"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "Nhiệm vụ đã hoàn thành!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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 "Di chuyển sang trái"
|
||||
|
||||
#. js-lingui-id: Ubl2by
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "Không có tham số"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "Không tìm thấy phương thức thanh toán. Vui lòng cập nhật chi tiết thanh toán của bạn."
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "Hình ảnh"
|
||||
msgid "Pie Chart"
|
||||
msgstr "Biểu đồ hình tròn"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "Chỗ giữ chỗ"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "Gửi lại email"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "Đặt lại"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "Đặt lại 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "Đặt lại thành"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "Đặt làm mặc định"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "Đặt làm tab ghim"
|
||||
|
||||
@@ -13071,7 +13093,7 @@ msgstr "Thiết lập cơ sở dữ liệu của bạn..."
|
||||
#: 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "Không có hoạt động nào liên kết với bản ghi này."
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "Đã có lỗi xảy ra trong quá trình cập nhật mật khẩu."
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "Ứng dụng này được liệt kê trên Marketplace vì nó đã đ
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "Ứng dụng này không được niêm yết trên chợ ứng dụng. Nó đã được chia sẻ qua liên kết trực tiếp."
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "Tuần này"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "Tím"
|
||||
msgid "Visibility"
|
||||
msgstr "Tính khả dụng"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "关于此用户"
|
||||
msgid "About this workspace"
|
||||
msgstr "关于此工作区"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "所有系统对象已在侧边栏中"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "所有任务都已处理。继续保持势头。"
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "任意 {fieldLabel} 字段"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "剪贴板功能需要安全连接 (HTTPS)。请通过 HTTPS 访问此应
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "关闭"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "内容"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "上下文"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "前端组件"
|
||||
msgid "Full access"
|
||||
msgstr "完全访问"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "安装"
|
||||
msgid "Installed"
|
||||
msgstr "已安装"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "已安装的应用程序"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "将一封电子邮件与"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "列出已安装的应用程序。使用筛选器搜索特定的应用程序。"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "任务完成!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "无参数"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "未找到付款方式。请更新您的账单明细。"
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "图片"
|
||||
msgid "Pie Chart"
|
||||
msgstr "饼图"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "占位符"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "重新发送邮件"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "重置"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "重置 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "重置为"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "设置为默认"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "设为固定选项卡"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "此记录没有关联的活动。"
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "更新密码时出错。"
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "此应用已在应用市场中列出,因为它已发布到 npm。"
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "此应用未在应用市场上架。它是通过直接链接共享的。"
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "本周"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "紫罗兰色"
|
||||
msgid "Visibility"
|
||||
msgstr "可见性"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
@@ -677,6 +677,11 @@ msgstr "關於此使用者"
|
||||
msgid "About this workspace"
|
||||
msgstr "關於此工作區"
|
||||
|
||||
#. js-lingui-id: LuXP9q
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pNW+Rt
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "Access Key ID"
|
||||
@@ -1589,6 +1594,11 @@ msgstr "所有系統物件已在側邊欄中"
|
||||
msgid "All tasks addressed. Maintain the momentum."
|
||||
msgstr "所有任務已處理。請繼續保持。"
|
||||
|
||||
#. js-lingui-id: 45Gm/K
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "All the applications currently installed on this workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XuuWVF
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/components/SettingsRolePermissionsObjectLevelObjectPicker.tsx
|
||||
msgid "All the standard objects"
|
||||
@@ -1801,8 +1811,8 @@ msgid "Any {fieldLabel} field"
|
||||
msgstr "任何 {fieldLabel} 欄位"
|
||||
|
||||
#. js-lingui-id: COyjuu
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Any device"
|
||||
msgstr ""
|
||||
|
||||
@@ -3173,6 +3183,7 @@ msgstr "剪貼簿需要安全連線 (HTTPS)。請透過 HTTPS 存取此應用程
|
||||
|
||||
#. js-lingui-id: yz7wBu
|
||||
#: src/modules/ui/feedback/snack-bar-manager/components/SnackBar.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close"
|
||||
msgstr "關閉"
|
||||
|
||||
@@ -3563,9 +3574,7 @@ msgid "Content"
|
||||
msgstr "內容"
|
||||
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "上下文"
|
||||
@@ -4647,7 +4656,8 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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
|
||||
@@ -4900,8 +4910,8 @@ msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#. js-lingui-id: BBqGS9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Desktop"
|
||||
msgstr ""
|
||||
|
||||
@@ -5124,7 +5134,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/RegularTabSettingsContent.tsx
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
@@ -7074,6 +7084,11 @@ msgstr "前端元件"
|
||||
msgid "Full access"
|
||||
msgstr "完全訪問"
|
||||
|
||||
#. js-lingui-id: Ld0Tt4
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Full tab widget"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YMZBxa
|
||||
#: src/pages/settings/security/event-logs/utils/getColumnsForEventLogTable.ts
|
||||
msgid "Function"
|
||||
@@ -7850,10 +7865,10 @@ msgstr "安裝"
|
||||
msgid "Installed"
|
||||
msgstr "已安裝"
|
||||
|
||||
#. js-lingui-id: N52taw
|
||||
#. js-lingui-id: OMxM9j
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "Installed applications"
|
||||
msgstr "已安裝的應用程式"
|
||||
msgid "Installed apps"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wJJ+Wy
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
@@ -8610,11 +8625,6 @@ msgstr "已將電子郵件連結至"
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 5Kn+XX
|
||||
#: src/pages/settings/applications/components/SettingsApplicationsTable.tsx
|
||||
msgid "List installed applications. Use filter to search for a specific application"
|
||||
msgstr "列出已安裝的應用程式。使用篩選器搜尋特定的應用程式"
|
||||
|
||||
#. js-lingui-id: Ap948/
|
||||
#: src/modules/settings/admin-panel/apps/components/SettingsAdminApps.tsx
|
||||
msgid "Listed"
|
||||
@@ -8826,6 +8836,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: wckWOP
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
@@ -9158,8 +9169,8 @@ msgid "Mission accomplished!"
|
||||
msgstr "任務完成!"
|
||||
|
||||
#. js-lingui-id: dMsM20
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dropdown-content/WidgetVisibilityDropdownContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useVisibilityLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/hooks/useTranslatedVisibilityLabel.ts
|
||||
msgid "Mobile"
|
||||
msgstr ""
|
||||
|
||||
@@ -9308,14 +9319,16 @@ 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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.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"
|
||||
@@ -10088,6 +10101,11 @@ msgstr "無參數"
|
||||
msgid "No payment method found. Please update your billing details."
|
||||
msgstr "未找到支付方式。請更新您的結算詳情。"
|
||||
|
||||
#. js-lingui-id: orE/ux
|
||||
#: src/pages/settings/applications/SettingsApplicationDetails.tsx
|
||||
msgid "No permission defined for this application"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Od1X93
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationPermissionsTab.tsx
|
||||
msgid "No permissions configured for this application."
|
||||
@@ -11120,6 +11138,11 @@ msgstr "圖片"
|
||||
msgid "Pie Chart"
|
||||
msgstr "餅圖"
|
||||
|
||||
#. js-lingui-id: 3pU8e+
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Pin tab"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2FIjLb
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Pink"
|
||||
@@ -11139,6 +11162,7 @@ msgstr "預留位置文字"
|
||||
|
||||
#. js-lingui-id: MFTZK8
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsPlacementSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Placement"
|
||||
msgstr ""
|
||||
|
||||
@@ -12000,7 +12024,8 @@ msgstr "重新發送電子郵件"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminConfigVariableDetails.tsx
|
||||
#: src/modules/views/components/ViewBarDetails.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Reset"
|
||||
msgstr "重設"
|
||||
|
||||
@@ -12015,16 +12040,13 @@ msgstr "重置 2FA"
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
msgstr "重置為"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
@@ -12998,7 +13020,7 @@ msgid "Set as default"
|
||||
msgstr "設為默認"
|
||||
|
||||
#. js-lingui-id: 7f09hf
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
msgid "Set as pinned tab"
|
||||
msgstr "設為釘選分頁"
|
||||
|
||||
@@ -13071,7 +13093,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/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/dashboard/SidePanelDashboardRecordTableSettings.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsSection.tsx
|
||||
#: src/modules/settings/roles/role/components/SettingsRole.tsx
|
||||
@@ -14176,6 +14198,11 @@ msgstr "此記錄沒有相關的活動。"
|
||||
msgid "There was an error while updating password."
|
||||
msgstr "更新密碼時出現錯誤。"
|
||||
|
||||
#. js-lingui-id: vg1S0X
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationsDeveloperTab.tsx
|
||||
msgid "These apps are not vetted. Use at your own risk."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AUV+TY
|
||||
#: src/modules/ai/components/ThinkingStepsDisplay.tsx
|
||||
msgid "Thinking"
|
||||
@@ -14264,6 +14291,11 @@ msgstr "此應用程式會在 Marketplace 上列出,因為它已發佈到 npm
|
||||
msgid "This application is not listed on the marketplace. It was shared via a direct link."
|
||||
msgstr "此應用程式未在市集上架。它是透過直接連結分享的。"
|
||||
|
||||
#. js-lingui-id: D8qhoN
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailAboutTab.tsx
|
||||
msgid "This application is required for your workspace to function properly and cannot be uninstalled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLIRqz
|
||||
#: src/modules/settings/admin-panel/config-variables/components/ConfigVariableHelpText.tsx
|
||||
msgid "This database value overrides environment settings. "
|
||||
@@ -14378,7 +14410,8 @@ msgid "This week"
|
||||
msgstr "本週"
|
||||
|
||||
#. js-lingui-id: DF2voz
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/RegularTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "This will cancel all modifications done on the tab and its widgets. Edit mode will be canceled and the page will refresh. This action cannot be undone."
|
||||
msgstr ""
|
||||
|
||||
@@ -15710,6 +15743,11 @@ msgstr "紫羅蘭色"
|
||||
msgid "Visibility"
|
||||
msgstr "可見性"
|
||||
|
||||
#. js-lingui-id: XQC+sL
|
||||
#: src/modules/side-panel/pages/page-layout/components/CanvasTabSettingsContent.tsx
|
||||
msgid "Visibility restriction"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gkAApJ
|
||||
#: src/modules/side-panel/pages/page-layout/components/WidgetSettingsManageSection.tsx
|
||||
msgid "Visibility Restriction"
|
||||
|
||||
-22
@@ -4,20 +4,14 @@ import { PINNED_COMMAND_MENU_ITEMS_GAP } from '@/command-menu-item/display/const
|
||||
import { commandMenuPinnedInlineLayoutState } from '@/command-menu-item/display/states/commandMenuPinnedInlineLayoutState';
|
||||
import { getVisibleCommandMenuItemCountForContainerWidth } from '@/command-menu-item/display/utils/getVisibleCommandMenuItemCountForContainerWidth';
|
||||
import { groupCommandMenuItems } from '@/command-menu-item/utils/groupCommandMenuItems';
|
||||
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
|
||||
import { SidePanelGroup } from '@/side-panel/components/SidePanelGroup';
|
||||
import { SidePanelList } from '@/side-panel/components/SidePanelList';
|
||||
import { SIDE_PANEL_PREVIOUS_COMPONENT_INSTANCE_ID } from '@/side-panel/constants/SidePanelPreviousComponentInstanceId';
|
||||
import { SIDE_PANEL_RESET_CONTEXT_TO_SELECTION } from '@/side-panel/constants/SidePanelResetContextToSelection';
|
||||
import { SidePanelResetContextToSelectionButton } from '@/side-panel/pages/root/components/SidePanelResetContextToSelectionButton';
|
||||
import { useFilterCommandMenuItemsWithSidePanelSearch } from '@/side-panel/pages/root/hooks/useFilterCommandMenuItemsWithSidePanelSearch';
|
||||
import { sidePanelSearchState } from '@/side-panel/states/sidePanelSearchState';
|
||||
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useLingui } from '@lingui/react/macro';
|
||||
import { isNumber } from '@sniptt/guards';
|
||||
import { useContext, useMemo } from 'react';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { CommandMenuItemAvailabilityType } from '~/generated-metadata/graphql';
|
||||
|
||||
export const SidePanelCommandMenuItemDisplayPage = () => {
|
||||
@@ -99,24 +93,8 @@ export const SidePanelCommandMenuItemDisplayPage = () => {
|
||||
...(noResults ? fallbackCommandMenuItems : []),
|
||||
].map((item) => item.id);
|
||||
|
||||
// oxlint-disable-next-line twenty/matching-state-variable
|
||||
const previousContextStoreCurrentObjectMetadataItemId =
|
||||
useAtomComponentStateValue(
|
||||
contextStoreCurrentObjectMetadataItemIdComponentState,
|
||||
SIDE_PANEL_PREVIOUS_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
if (isDefined(previousContextStoreCurrentObjectMetadataItemId)) {
|
||||
selectableItemIds.unshift(SIDE_PANEL_RESET_CONTEXT_TO_SELECTION);
|
||||
}
|
||||
|
||||
return (
|
||||
<SidePanelList selectableItemIds={selectableItemIds} noResults={noResults}>
|
||||
{isDefined(previousContextStoreCurrentObjectMetadataItemId) && (
|
||||
<SidePanelGroup heading={t`Context`}>
|
||||
<SidePanelResetContextToSelectionButton />
|
||||
</SidePanelGroup>
|
||||
)}
|
||||
{matchingPinnedItems.length > 0 && (
|
||||
<SidePanelGroup heading={t`Pinned`}>
|
||||
{matchingPinnedItems.map((item) => (
|
||||
|
||||
-195
@@ -1,195 +0,0 @@
|
||||
import { renderHook } from '@testing-library/react';
|
||||
import { act } from 'react';
|
||||
|
||||
import { SIDE_PANEL_COMPONENT_INSTANCE_ID } from '@/side-panel/constants/SidePanelComponentInstanceId';
|
||||
import { SIDE_PANEL_PREVIOUS_COMPONENT_INSTANCE_ID } from '@/side-panel/constants/SidePanelPreviousComponentInstanceId';
|
||||
import { useSetGlobalCommandMenuContext } from '@/command-menu/hooks/useSetGlobalCommandMenuContext';
|
||||
import { sidePanelPageInfoState } from '@/side-panel/states/sidePanelPageInfoState';
|
||||
import { hasUserSelectedSidePanelListItemState } from '@/side-panel/states/hasUserSelectedSidePanelListItemState';
|
||||
import { jotaiStore } from '@/ui/utilities/state/jotai/jotaiStore';
|
||||
import { contextStoreAnyFieldFilterValueComponentState } from '@/context-store/states/contextStoreAnyFieldFilterValueComponentState';
|
||||
import { contextStoreCurrentViewTypeComponentState } from '@/context-store/states/contextStoreCurrentViewTypeComponentState';
|
||||
import { contextStoreFiltersComponentState } from '@/context-store/states/contextStoreFiltersComponentState';
|
||||
import { contextStoreNumberOfSelectedRecordsComponentState } from '@/context-store/states/contextStoreNumberOfSelectedRecordsComponentState';
|
||||
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
|
||||
import { ContextStoreViewType } from '@/context-store/types/ContextStoreViewType';
|
||||
import { recordStoreFamilyState } from '@/object-record/record-store/states/recordStoreFamilyState';
|
||||
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
|
||||
import { getJestMetadataAndApolloMocksAndCommandMenuWrapper } from '~/testing/jest/getJestMetadataAndApolloMocksAndCommandMenuWrapper';
|
||||
import { mockedPersonRecords } from '~/testing/mock-data/generated/data/people/mock-people-data';
|
||||
import { getTestEnrichedObjectMetadataItemsMock } from '~/testing/utils/getTestEnrichedObjectMetadataItemsMock';
|
||||
import { contextStoreFilterGroupsComponentState } from '@/context-store/states/contextStoreFilterGroupsComponentState';
|
||||
|
||||
const personMockObjectMetadataItem =
|
||||
getTestEnrichedObjectMetadataItemsMock().find(
|
||||
(item) => item.nameSingular === 'person',
|
||||
)!;
|
||||
|
||||
const peopleMock = [...mockedPersonRecords];
|
||||
|
||||
jotaiStore.set(
|
||||
recordStoreFamilyState.atomFamily(peopleMock[0].id),
|
||||
peopleMock[0],
|
||||
);
|
||||
jotaiStore.set(
|
||||
recordStoreFamilyState.atomFamily(peopleMock[1].id),
|
||||
peopleMock[1],
|
||||
);
|
||||
|
||||
const wrapper = getJestMetadataAndApolloMocksAndCommandMenuWrapper({
|
||||
apolloMocks: [],
|
||||
componentInstanceId: SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
contextStoreCurrentObjectMetadataNameSingular:
|
||||
personMockObjectMetadataItem.nameSingular,
|
||||
contextStoreCurrentViewId: 'my-view-id',
|
||||
contextStoreTargetedRecordsRule: {
|
||||
mode: 'selection',
|
||||
selectedRecordIds: [peopleMock[0].id, peopleMock[1].id],
|
||||
},
|
||||
contextStoreNumberOfSelectedRecords: 2,
|
||||
contextStoreCurrentViewType: ContextStoreViewType.Table,
|
||||
});
|
||||
|
||||
describe('useSetGlobalCommandMenuContext', () => {
|
||||
beforeEach(() => {
|
||||
jest.clearAllMocks();
|
||||
});
|
||||
|
||||
it('should reset all command menu context states', () => {
|
||||
const { result } = renderHook(
|
||||
() => {
|
||||
const { setGlobalCommandMenuContext } =
|
||||
useSetGlobalCommandMenuContext();
|
||||
|
||||
const contextStoreTargetedRecordsRule = useAtomComponentStateValue(
|
||||
contextStoreTargetedRecordsRuleComponentState,
|
||||
SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
const contextStoreNumberOfSelectedRecords = useAtomComponentStateValue(
|
||||
contextStoreNumberOfSelectedRecordsComponentState,
|
||||
SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
const contextStoreFilters = useAtomComponentStateValue(
|
||||
contextStoreFiltersComponentState,
|
||||
SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
const contextStoreFilterGroups = useAtomComponentStateValue(
|
||||
contextStoreFilterGroupsComponentState,
|
||||
SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
const contextStoreAnyFieldFilterValue = useAtomComponentStateValue(
|
||||
contextStoreAnyFieldFilterValueComponentState,
|
||||
SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
const contextStoreCurrentViewType = useAtomComponentStateValue(
|
||||
contextStoreCurrentViewTypeComponentState,
|
||||
SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
return {
|
||||
setGlobalCommandMenuContext,
|
||||
contextStoreTargetedRecordsRule,
|
||||
contextStoreNumberOfSelectedRecords,
|
||||
contextStoreFilters,
|
||||
contextStoreFilterGroups,
|
||||
contextStoreCurrentViewType,
|
||||
contextStoreAnyFieldFilterValue,
|
||||
};
|
||||
},
|
||||
{
|
||||
wrapper,
|
||||
},
|
||||
);
|
||||
|
||||
expect(result.current.contextStoreTargetedRecordsRule).toEqual({
|
||||
mode: 'selection',
|
||||
selectedRecordIds: [peopleMock[0].id, peopleMock[1].id],
|
||||
});
|
||||
expect(result.current.contextStoreNumberOfSelectedRecords).toBe(2);
|
||||
expect(result.current.contextStoreFilters).toEqual([]);
|
||||
expect(result.current.contextStoreAnyFieldFilterValue).toEqual('');
|
||||
expect(result.current.contextStoreCurrentViewType).toBe(
|
||||
ContextStoreViewType.Table,
|
||||
);
|
||||
const sidePanelPageInfo = jotaiStore.get(sidePanelPageInfoState.atom);
|
||||
expect(sidePanelPageInfo).toEqual({
|
||||
title: undefined,
|
||||
Icon: undefined,
|
||||
instanceId: '',
|
||||
});
|
||||
const hasUserSelectedSidePanelListItem = jotaiStore.get(
|
||||
hasUserSelectedSidePanelListItemState.atom,
|
||||
);
|
||||
expect(hasUserSelectedSidePanelListItem).toBe(false);
|
||||
|
||||
act(() => {
|
||||
result.current.setGlobalCommandMenuContext();
|
||||
});
|
||||
|
||||
expect(result.current.contextStoreTargetedRecordsRule).toEqual({
|
||||
mode: 'selection',
|
||||
selectedRecordIds: [],
|
||||
});
|
||||
expect(result.current.contextStoreNumberOfSelectedRecords).toBe(0);
|
||||
expect(result.current.contextStoreFilters).toEqual([]);
|
||||
expect(result.current.contextStoreAnyFieldFilterValue).toEqual('');
|
||||
expect(result.current.contextStoreCurrentViewType).toBe(
|
||||
ContextStoreViewType.Table,
|
||||
);
|
||||
const sidePanelPageInfoAfter = jotaiStore.get(sidePanelPageInfoState.atom);
|
||||
expect(sidePanelPageInfoAfter).toEqual({
|
||||
title: undefined,
|
||||
Icon: undefined,
|
||||
instanceId: '',
|
||||
});
|
||||
const hasUserSelectedSidePanelListItemAfter = jotaiStore.get(
|
||||
hasUserSelectedSidePanelListItemState.atom,
|
||||
);
|
||||
expect(hasUserSelectedSidePanelListItemAfter).toBe(false);
|
||||
});
|
||||
|
||||
it('should copy context store states to previous instance before resetting', () => {
|
||||
const { result } = renderHook(
|
||||
() => {
|
||||
const { setGlobalCommandMenuContext } =
|
||||
useSetGlobalCommandMenuContext();
|
||||
|
||||
// oxlint-disable-next-line twenty/matching-state-variable
|
||||
const previousTargetedRecordsRule = useAtomComponentStateValue(
|
||||
contextStoreTargetedRecordsRuleComponentState,
|
||||
SIDE_PANEL_PREVIOUS_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
// oxlint-disable-next-line twenty/matching-state-variable
|
||||
const previousNumberOfSelectedRecords = useAtomComponentStateValue(
|
||||
contextStoreNumberOfSelectedRecordsComponentState,
|
||||
SIDE_PANEL_PREVIOUS_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
return {
|
||||
setGlobalCommandMenuContext,
|
||||
previousTargetedRecordsRule,
|
||||
previousNumberOfSelectedRecords,
|
||||
};
|
||||
},
|
||||
{
|
||||
wrapper,
|
||||
},
|
||||
);
|
||||
|
||||
act(() => {
|
||||
result.current.setGlobalCommandMenuContext();
|
||||
});
|
||||
|
||||
expect(result.current.previousTargetedRecordsRule).toEqual({
|
||||
mode: 'selection',
|
||||
selectedRecordIds: [peopleMock[0].id, peopleMock[1].id],
|
||||
});
|
||||
expect(result.current.previousNumberOfSelectedRecords).toBe(2);
|
||||
});
|
||||
});
|
||||
@@ -1,7 +1,4 @@
|
||||
import { useSetGlobalCommandMenuContext } from '@/command-menu/hooks/useSetGlobalCommandMenuContext';
|
||||
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
|
||||
import { useKeyboardShortcutMenu } from '@/keyboard-shortcut-menu/hooks/useKeyboardShortcutMenu';
|
||||
import { SIDE_PANEL_COMPONENT_INSTANCE_ID } from '@/side-panel/constants/SidePanelComponentInstanceId';
|
||||
import { SIDE_PANEL_FOCUS_ID } from '@/side-panel/constants/SidePanelFocusId';
|
||||
import { useOpenAskAIPageInSidePanel } from '@/side-panel/hooks/useOpenAskAIPageInSidePanel';
|
||||
import { useOpenRecordsSearchPageInSidePanel } from '@/side-panel/hooks/useOpenRecordsSearchPageInSidePanel';
|
||||
@@ -11,7 +8,6 @@ import { sidePanelPageState } from '@/side-panel/states/sidePanelPageState';
|
||||
import { sidePanelSearchState } from '@/side-panel/states/sidePanelSearchState';
|
||||
import { useGlobalHotkeys } from '@/ui/utilities/hotkey/hooks/useGlobalHotkeys';
|
||||
import { useHotkeysOnFocusedElement } from '@/ui/utilities/hotkey/hooks/useHotkeysOnFocusedElement';
|
||||
import { useAtomComponentStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentStateValue';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useIsFeatureEnabled } from '@/workspace/hooks/useIsFeatureEnabled';
|
||||
import { isNonEmptyString } from '@sniptt/guards';
|
||||
@@ -29,8 +25,6 @@ export const useCommandMenuHotKeys = () => {
|
||||
const { goBackFromSidePanel, goBackOneSubPageOrMainPage } =
|
||||
useSidePanelHistory();
|
||||
|
||||
const { setGlobalCommandMenuContext } = useSetGlobalCommandMenuContext();
|
||||
|
||||
const sidePanelSearch = useAtomStateValue(sidePanelSearchState);
|
||||
|
||||
const { closeKeyboardShortcutMenu } = useKeyboardShortcutMenu();
|
||||
@@ -39,11 +33,6 @@ export const useCommandMenuHotKeys = () => {
|
||||
|
||||
const isAiEnabled = useIsFeatureEnabled(FeatureFlagKey.IS_AI_ENABLED);
|
||||
|
||||
const contextStoreTargetedRecordsRule = useAtomComponentStateValue(
|
||||
contextStoreTargetedRecordsRuleComponentState,
|
||||
SIDE_PANEL_COMPONENT_INSTANCE_ID,
|
||||
);
|
||||
|
||||
useGlobalHotkeys({
|
||||
keys: ['ctrl+k', 'meta+k'],
|
||||
callback: () => {
|
||||
@@ -99,27 +88,12 @@ export const useCommandMenuHotKeys = () => {
|
||||
return;
|
||||
}
|
||||
|
||||
if (
|
||||
sidePanelPage === SidePanelPages.CommandMenuDisplay &&
|
||||
!(
|
||||
contextStoreTargetedRecordsRule.mode === 'selection' &&
|
||||
contextStoreTargetedRecordsRule.selectedRecordIds.length === 0
|
||||
)
|
||||
) {
|
||||
setGlobalCommandMenuContext();
|
||||
}
|
||||
if (sidePanelPage !== SidePanelPages.CommandMenuDisplay) {
|
||||
goBackOneSubPageOrMainPage();
|
||||
}
|
||||
},
|
||||
focusId: SIDE_PANEL_FOCUS_ID,
|
||||
dependencies: [
|
||||
sidePanelPage,
|
||||
sidePanelSearch,
|
||||
contextStoreTargetedRecordsRule,
|
||||
goBackOneSubPageOrMainPage,
|
||||
setGlobalCommandMenuContext,
|
||||
],
|
||||
dependencies: [sidePanelPage, sidePanelSearch, goBackOneSubPageOrMainPage],
|
||||
options: {
|
||||
preventDefault: false,
|
||||
enableOnFormTags: false,
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user