Compare commits
97
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58189e1c05 | ||
|
|
a3f468ef98 | ||
|
|
4d74cc0a28 | ||
|
|
05c0713474 | ||
|
|
28de34cf20 | ||
|
|
e8cb086b64 | ||
|
|
f651413297 | ||
|
|
ccaea1ba36 | ||
|
|
a51b5ed589 | ||
|
|
6efd9ad26e | ||
|
|
c407341912 | ||
|
|
81fc960712 | ||
|
|
cb44b22e15 | ||
|
|
9498a60f74 | ||
|
|
191a277ddf | ||
|
|
7f1814805d | ||
|
|
34b81adce8 | ||
|
|
cd2e08b912 | ||
|
|
fb21f3ccf5 | ||
|
|
281bb6d783 | ||
|
|
c96c034908 | ||
|
|
5efe69f8d3 | ||
|
|
c2b058a6a7 | ||
|
|
22c9693ce5 | ||
|
|
50ea560e57 | ||
|
|
56056b885d | ||
|
|
db9da3194f | ||
|
|
68f5e70ade | ||
|
|
08077476f3 | ||
|
|
6f0ac88e20 | ||
|
|
17424320e3 | ||
|
|
6360fb3bce | ||
|
|
da1b1f1cbc | ||
|
|
31718d163c | ||
|
|
f47608de07 | ||
|
|
695518a15e | ||
|
|
34ab72c460 | ||
|
|
9eba54134d | ||
|
|
34832815e6 | ||
|
|
7a341c6475 | ||
|
|
1c297e5ace | ||
|
|
c3a3cf9c67 | ||
|
|
8ef99671e2 | ||
|
|
e63a23ea00 | ||
|
|
39b9ae6a76 | ||
|
|
afeef8e04a | ||
|
|
c7f6036a47 | ||
|
|
ec5ab2b84a | ||
|
|
b171a23216 | ||
|
|
f771b13a20 | ||
|
|
92635b960b | ||
|
|
2e015ee68d | ||
|
|
82611de9b6 | ||
|
|
36c7c99e34 | ||
|
|
160a80cbcb | ||
|
|
052aecccc7 | ||
|
|
b651a74b1f | ||
|
|
29979f535d | ||
|
|
b1e449d764 | ||
|
|
c28e637ea7 | ||
|
|
b732b2efd4 | ||
|
|
3c5796bdb0 | ||
|
|
cfefe9273b | ||
|
|
d126d54bbc | ||
|
|
5041b3e14b | ||
|
|
1e2b31b040 | ||
|
|
340a01567a | ||
|
|
4985270e69 | ||
|
|
b87762b1c2 | ||
|
|
578d990b9c | ||
|
|
dfe9cb4346 | ||
|
|
91374262f2 | ||
|
|
7335d352a9 | ||
|
|
bfdbc93b1c | ||
|
|
3abef48663 | ||
|
|
441a9464d1 | ||
|
|
72dd3af155 | ||
|
|
6c1db2e7fb | ||
|
|
511d1bd7ab | ||
|
|
d47ddad4c5 | ||
|
|
33a474c8e6 | ||
|
|
cc247c2e8e | ||
|
|
4d6c8db205 | ||
|
|
a8dad6c882 | ||
|
|
895bb58fc6 | ||
|
|
4fbe0a92ae | ||
|
|
5f0d6553f6 | ||
|
|
13ea3ec75c | ||
|
|
e25ea6069d | ||
|
|
f7ef41959b | ||
|
|
ba0108944f | ||
|
|
03c94727be | ||
|
|
bf22373315 | ||
|
|
e1374e34a7 | ||
|
|
523289efad | ||
|
|
e6bb39deea | ||
|
|
790a58945b |
@@ -36,6 +36,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -50,10 +53,16 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
clickhouse:
|
||||
image: clickhouse/clickhouse-server:25.8.8
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
CLICKHOUSE_PASSWORD: clickhousePassword
|
||||
CLICKHOUSE_URL: "http://default:clickhousePassword@localhost:8123/twenty"
|
||||
@@ -143,7 +152,6 @@ jobs:
|
||||
set_env_var "CLICKHOUSE_PASSWORD" "clickhousePassword"
|
||||
|
||||
npx nx run twenty-server:database:init:prod
|
||||
npx nx run twenty-server:database:migrate:prod
|
||||
|
||||
- name: Seed current branch database with test data
|
||||
run: |
|
||||
@@ -296,7 +304,6 @@ jobs:
|
||||
set_env_var "CLICKHOUSE_PASSWORD" "clickhousePassword"
|
||||
|
||||
npx nx run twenty-server:database:init:prod
|
||||
npx nx run twenty-server:database:migrate:prod
|
||||
|
||||
- name: Seed main branch database with test data
|
||||
run: |
|
||||
@@ -395,6 +402,12 @@ jobs:
|
||||
# Clean up temp directory
|
||||
rm -rf /tmp/current-branch-files
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
|
||||
- name: Install OpenAPI Diff Tool
|
||||
run: |
|
||||
# Using the Java-based OpenAPITools/openapi-diff via Docker
|
||||
|
||||
@@ -37,6 +37,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -51,8 +54,13 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
PUBLISHABLE_PACKAGES: twenty-client-sdk twenty-sdk create-twenty-app
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
@@ -66,13 +74,13 @@ jobs:
|
||||
run: |
|
||||
CI_VERSION="0.0.0-ci.$(date +%s)"
|
||||
echo "CI_VERSION=$CI_VERSION" >> $GITHUB_ENV
|
||||
npx nx run-many -t set-local-version -p twenty-sdk twenty-client-sdk create-twenty-app --releaseVersion=$CI_VERSION
|
||||
npx nx run-many -t set-local-version -p $PUBLISHABLE_PACKAGES --releaseVersion=$CI_VERSION
|
||||
|
||||
- name: Build packages
|
||||
run: |
|
||||
npx nx build twenty-sdk
|
||||
npx nx build twenty-client-sdk
|
||||
npx nx build create-twenty-app
|
||||
for pkg in $PUBLISHABLE_PACKAGES; do
|
||||
npx nx build $pkg
|
||||
done
|
||||
|
||||
- name: Install and start Verdaccio
|
||||
run: |
|
||||
@@ -89,11 +97,13 @@ jobs:
|
||||
|
||||
- name: Publish packages to local registry
|
||||
run: |
|
||||
npm set //localhost:4873/:_authToken "ci-auth-token"
|
||||
yarn config set npmRegistryServer http://localhost:4873
|
||||
yarn config set unsafeHttpWhitelist --json '["localhost"]'
|
||||
yarn config set npmAuthToken ci-auth-token
|
||||
|
||||
for pkg in twenty-sdk twenty-client-sdk create-twenty-app; do
|
||||
for pkg in $PUBLISHABLE_PACKAGES; do
|
||||
cd packages/$pkg
|
||||
npm publish --registry http://localhost:4873 --tag ci
|
||||
yarn npm publish --tag ci
|
||||
cd ../..
|
||||
done
|
||||
|
||||
|
||||
@@ -26,6 +26,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -40,6 +43,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
|
||||
@@ -57,6 +57,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -71,6 +74,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
env:
|
||||
|
||||
@@ -84,6 +84,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -98,6 +101,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
@@ -122,7 +128,6 @@ jobs:
|
||||
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "default";'
|
||||
PGPASSWORD=postgres psql -h localhost -p 5432 -U postgres -d postgres -c 'CREATE DATABASE "test";'
|
||||
npx nx run twenty-server:database:init:prod
|
||||
npx nx run twenty-server:database:migrate:prod
|
||||
- name: Worker / Run
|
||||
run: |
|
||||
timeout 30s npx nx run twenty-server:worker || exit_code=$?
|
||||
@@ -227,6 +232,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -241,10 +249,16 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
clickhouse:
|
||||
image: clickhouse/clickhouse-server:25.8.8
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
CLICKHOUSE_PASSWORD: clickhousePassword
|
||||
CLICKHOUSE_URL: "http://default:clickhousePassword@localhost:8123/twenty"
|
||||
|
||||
@@ -27,6 +27,11 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
- name: Run compose
|
||||
run: |
|
||||
echo "Patching docker-compose.yml..."
|
||||
@@ -97,6 +102,11 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
- name: Create frontend placeholder
|
||||
run: |
|
||||
mkdir -p packages/twenty-front/build
|
||||
|
||||
@@ -27,6 +27,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
|
||||
@@ -30,6 +30,9 @@ jobs:
|
||||
services:
|
||||
postgres:
|
||||
image: twentycrm/twenty-postgres-spilo
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
env:
|
||||
PGUSER_SUPERUSER: postgres
|
||||
PGPASSWORD_SUPERUSER: postgres
|
||||
@@ -44,6 +47,9 @@ jobs:
|
||||
--health-retries 5
|
||||
redis:
|
||||
image: redis
|
||||
credentials:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
ports:
|
||||
- 6379:6379
|
||||
steps:
|
||||
|
||||
@@ -17,6 +17,12 @@ jobs:
|
||||
with:
|
||||
ref: ${{ github.event.client_payload.pr_head_sha }}
|
||||
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ vars.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||
|
||||
- name: Run compose setup
|
||||
run: |
|
||||
echo "Patching docker-compose.yml..."
|
||||
|
||||
+940
File diff suppressed because one or more lines are too long
Vendored
-942
File diff suppressed because one or more lines are too long
+1
-1
@@ -6,4 +6,4 @@ enableInlineHunks: true
|
||||
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.9.2.cjs
|
||||
yarnPath: .yarn/releases/yarn-4.13.0.cjs
|
||||
|
||||
+4
-2
@@ -175,7 +175,7 @@
|
||||
},
|
||||
"license": "AGPL-3.0",
|
||||
"name": "twenty",
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"packageManager": "yarn@4.13.0",
|
||||
"resolutions": {
|
||||
"graphql": "16.8.1",
|
||||
"type-fest": "4.10.1",
|
||||
@@ -203,6 +203,7 @@
|
||||
"packages/twenty-utils",
|
||||
"packages/twenty-zapier",
|
||||
"packages/twenty-website",
|
||||
"packages/twenty-website-new",
|
||||
"packages/twenty-docs",
|
||||
"packages/twenty-e2e-testing",
|
||||
"packages/twenty-shared",
|
||||
@@ -211,7 +212,8 @@
|
||||
"packages/twenty-apps",
|
||||
"packages/twenty-cli",
|
||||
"packages/create-twenty-app",
|
||||
"packages/twenty-oxlint-rules"
|
||||
"packages/twenty-oxlint-rules",
|
||||
"packages/twenty-companion"
|
||||
]
|
||||
},
|
||||
"prettier": {
|
||||
|
||||
@@ -41,7 +41,7 @@ cd my-twenty-app
|
||||
|
||||
# Or do it manually:
|
||||
yarn twenty server start # Start local Twenty server
|
||||
yarn twenty remote add --local # Authenticate via OAuth
|
||||
yarn twenty remote add http://localhost:2020 --as local # Authenticate via OAuth
|
||||
|
||||
# Start dev mode: watches, builds, and syncs local changes to your workspace
|
||||
# (also auto-generates typed CoreApiClient — MetadataApiClient ships pre-built — both available via `twenty-client-sdk`)
|
||||
@@ -122,18 +122,10 @@ yarn twenty server reset # Wipe all data and start fresh
|
||||
|
||||
The server is pre-seeded with a workspace and user (`tim@apple.dev` / `tim@apple.dev`).
|
||||
|
||||
### How to use a local Twenty instance
|
||||
|
||||
If you're already running a local Twenty instance, you can connect to it instead of using Docker. Pass the port your local server is listening on (default: `3000`):
|
||||
|
||||
```bash
|
||||
npx create-twenty-app@latest my-app --port 3000
|
||||
```
|
||||
|
||||
## Next steps
|
||||
|
||||
- Run `yarn twenty help` to see all available commands.
|
||||
- Use `yarn twenty remote add --local` to authenticate with your Twenty workspace via OAuth.
|
||||
- Use `yarn twenty remote add <url>` to authenticate with your Twenty workspace via OAuth.
|
||||
- Explore the generated project and add your first entity with `yarn twenty add` (logic functions, front components, objects, roles, views, navigation menu items, skills).
|
||||
- Use `yarn twenty dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
|
||||
- `CoreApiClient` is auto-generated by `yarn twenty dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient } from 'twenty-client-sdk/core'` and `import { MetadataApiClient } from 'twenty-client-sdk/metadata'`.
|
||||
@@ -177,7 +169,7 @@ Our team reviews contributions for quality, security, and reusability before mer
|
||||
## Troubleshooting
|
||||
|
||||
- Server not starting: check Docker is running (`docker info`), then try `yarn twenty server logs`.
|
||||
- Auth not working: make sure you're logged in to Twenty in the browser first, then run `yarn twenty remote add --local`.
|
||||
- Auth not working: make sure you're logged in to Twenty in the browser first, then run `yarn twenty remote add <url>`.
|
||||
- Types not generated: ensure `yarn twenty dev` is running — it auto-generates the typed client.
|
||||
|
||||
## Contributing
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-twenty-app",
|
||||
"version": "0.8.0-canary.2",
|
||||
"version": "0.8.0-canary.5",
|
||||
"description": "Command-line interface to create Twenty application",
|
||||
"main": "dist/cli.cjs",
|
||||
"bin": "dist/cli.cjs",
|
||||
@@ -36,6 +36,7 @@
|
||||
"lodash.camelcase": "^4.3.0",
|
||||
"lodash.kebabcase": "^4.1.1",
|
||||
"lodash.startcase": "^4.4.0",
|
||||
"twenty-sdk": "workspace:*",
|
||||
"uuid": "^13.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
@@ -45,7 +46,6 @@
|
||||
"@types/lodash.kebabcase": "^4.1.7",
|
||||
"@types/lodash.startcase": "^4",
|
||||
"@types/node": "^20.0.0",
|
||||
"twenty-sdk": "workspace:*",
|
||||
"twenty-shared": "workspace:*",
|
||||
"typescript": "^5.9.2",
|
||||
"vite": "^7.0.0",
|
||||
|
||||
@@ -31,10 +31,6 @@ const program = new Command(packageJson.name)
|
||||
'--skip-local-instance',
|
||||
'Skip the local Twenty instance setup prompt',
|
||||
)
|
||||
.option(
|
||||
'-p, --port <port>',
|
||||
'Port of an existing Twenty server (skips Docker setup)',
|
||||
)
|
||||
.helpOption('-h, --help', 'Display this help message.')
|
||||
.action(
|
||||
async (
|
||||
@@ -46,7 +42,6 @@ const program = new Command(packageJson.name)
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
port?: string;
|
||||
},
|
||||
) => {
|
||||
const modeFlags = [options?.exhaustive, options?.minimal].filter(Boolean);
|
||||
@@ -76,8 +71,6 @@ const program = new Command(packageJson.name)
|
||||
|
||||
const mode: ScaffoldingMode = options?.minimal ? 'minimal' : 'exhaustive';
|
||||
|
||||
const port = options?.port ? parseInt(options.port, 10) : undefined;
|
||||
|
||||
await new CreateAppCommand().execute({
|
||||
directory,
|
||||
mode,
|
||||
@@ -85,7 +78,6 @@ const program = new Command(packageJson.name)
|
||||
displayName: options?.displayName,
|
||||
description: options?.description,
|
||||
skipLocalInstance: options?.skipLocalInstance,
|
||||
port,
|
||||
});
|
||||
},
|
||||
);
|
||||
|
||||
@@ -1,18 +1,18 @@
|
||||
import { basename } from 'path';
|
||||
import { copyBaseApplicationProject } from '@/utils/app-template';
|
||||
import { convertToLabel } from '@/utils/convert-to-label';
|
||||
import { install } from '@/utils/install';
|
||||
import {
|
||||
type LocalInstanceResult,
|
||||
setupLocalInstance,
|
||||
} from '@/utils/setup-local-instance';
|
||||
import { tryGitInit } from '@/utils/try-git-init';
|
||||
import chalk from 'chalk';
|
||||
import * as fs from 'fs-extra';
|
||||
import inquirer from 'inquirer';
|
||||
import kebabCase from 'lodash.kebabcase';
|
||||
import { execSync } from 'node:child_process';
|
||||
import * as path from 'path';
|
||||
import { basename } from 'path';
|
||||
import {
|
||||
authLoginOAuth,
|
||||
serverStart,
|
||||
type ServerStartResult,
|
||||
} from 'twenty-sdk/cli';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
import {
|
||||
@@ -29,7 +29,6 @@ type CreateAppOptions = {
|
||||
displayName?: string;
|
||||
description?: string;
|
||||
skipLocalInstance?: boolean;
|
||||
port?: number;
|
||||
};
|
||||
|
||||
export class CreateAppCommand {
|
||||
@@ -60,17 +59,22 @@ export class CreateAppCommand {
|
||||
|
||||
await tryGitInit(appDirectory);
|
||||
|
||||
let localResult: LocalInstanceResult = { running: false };
|
||||
let serverResult: ServerStartResult | undefined;
|
||||
|
||||
if (!options.skipLocalInstance) {
|
||||
localResult = await setupLocalInstance(appDirectory, options.port);
|
||||
const startResult = await serverStart({
|
||||
onProgress: (message: string) => console.log(chalk.gray(message)),
|
||||
});
|
||||
|
||||
if (localResult.running && localResult.serverUrl) {
|
||||
await this.connectToLocal(appDirectory, localResult.serverUrl);
|
||||
if (startResult.success) {
|
||||
serverResult = startResult.data;
|
||||
await this.connectToLocal(serverResult.url);
|
||||
} else {
|
||||
console.log(chalk.yellow(`\n${startResult.error.message}`));
|
||||
}
|
||||
}
|
||||
|
||||
this.logSuccess(appDirectory, localResult);
|
||||
this.logSuccess(appDirectory, serverResult);
|
||||
} catch (error) {
|
||||
console.error(
|
||||
chalk.red('\nCreate application failed:'),
|
||||
@@ -197,15 +201,20 @@ export class CreateAppCommand {
|
||||
);
|
||||
}
|
||||
|
||||
private async connectToLocal(
|
||||
appDirectory: string,
|
||||
serverUrl: string,
|
||||
): Promise<void> {
|
||||
private async connectToLocal(serverUrl: string): Promise<void> {
|
||||
try {
|
||||
execSync(`yarn twenty remote add ${serverUrl} --as local`, {
|
||||
cwd: appDirectory,
|
||||
stdio: 'inherit',
|
||||
const result = await authLoginOAuth({
|
||||
apiUrl: serverUrl,
|
||||
remote: 'local',
|
||||
});
|
||||
|
||||
if (!result.success) {
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
'Authentication skipped. Run `yarn twenty remote add --local` manually.',
|
||||
),
|
||||
);
|
||||
}
|
||||
} catch {
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
@@ -217,14 +226,14 @@ export class CreateAppCommand {
|
||||
|
||||
private logSuccess(
|
||||
appDirectory: string,
|
||||
localResult: LocalInstanceResult,
|
||||
serverResult?: ServerStartResult,
|
||||
): void {
|
||||
const dirName = basename(appDirectory);
|
||||
|
||||
console.log(chalk.blue('\nApplication created. Next steps:'));
|
||||
console.log(chalk.gray(`- cd ${dirName}`));
|
||||
|
||||
if (!localResult.running) {
|
||||
if (!serverResult) {
|
||||
console.log(
|
||||
chalk.gray(
|
||||
'- yarn twenty remote add --local # Authenticate with Twenty',
|
||||
|
||||
@@ -1,106 +0,0 @@
|
||||
import chalk from 'chalk';
|
||||
import { execSync } from 'node:child_process';
|
||||
|
||||
const LOCAL_PORTS = [2020, 3000];
|
||||
|
||||
// Minimal health check — the full implementation lives in twenty-sdk
|
||||
const isServerReady = async (port: number): Promise<boolean> => {
|
||||
const controller = new AbortController();
|
||||
const timeoutId = setTimeout(() => controller.abort(), 3000);
|
||||
|
||||
try {
|
||||
const response = await fetch(`http://localhost:${port}/healthz`, {
|
||||
signal: controller.signal,
|
||||
});
|
||||
|
||||
const body = await response.json();
|
||||
|
||||
return body.status === 'ok';
|
||||
} catch {
|
||||
return false;
|
||||
} finally {
|
||||
clearTimeout(timeoutId);
|
||||
}
|
||||
};
|
||||
|
||||
const detectRunningServer = async (
|
||||
preferredPort?: number,
|
||||
): Promise<number | null> => {
|
||||
const ports = preferredPort ? [preferredPort] : LOCAL_PORTS;
|
||||
|
||||
for (const port of ports) {
|
||||
if (await isServerReady(port)) {
|
||||
return port;
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
export type LocalInstanceResult = {
|
||||
running: boolean;
|
||||
serverUrl?: string;
|
||||
};
|
||||
|
||||
export const setupLocalInstance = async (
|
||||
appDirectory: string,
|
||||
preferredPort?: number,
|
||||
): Promise<LocalInstanceResult> => {
|
||||
const detectedPort = await detectRunningServer(preferredPort);
|
||||
|
||||
if (detectedPort) {
|
||||
const serverUrl = `http://localhost:${detectedPort}`;
|
||||
|
||||
console.log(chalk.green(`Twenty server detected on ${serverUrl}.\n`));
|
||||
|
||||
return { running: true, serverUrl };
|
||||
}
|
||||
|
||||
if (preferredPort) {
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
`No Twenty server found on port ${preferredPort}.\n` +
|
||||
'Start your server and run `yarn twenty remote add --local` manually.\n',
|
||||
),
|
||||
);
|
||||
|
||||
return { running: false };
|
||||
}
|
||||
|
||||
console.log(chalk.blue('Setting up local Twenty instance...\n'));
|
||||
|
||||
try {
|
||||
execSync('yarn twenty server start', {
|
||||
cwd: appDirectory,
|
||||
stdio: 'inherit',
|
||||
});
|
||||
} catch {
|
||||
return { running: false };
|
||||
}
|
||||
|
||||
console.log(chalk.gray('Waiting for Twenty to be ready...\n'));
|
||||
|
||||
const startTime = Date.now();
|
||||
const timeoutMs = 180 * 1000;
|
||||
|
||||
while (Date.now() - startTime < timeoutMs) {
|
||||
if (await isServerReady(LOCAL_PORTS[0])) {
|
||||
const serverUrl = `http://localhost:${LOCAL_PORTS[0]}`;
|
||||
|
||||
console.log(chalk.green(`Server running on '${serverUrl}'\n`));
|
||||
|
||||
return { running: true, serverUrl };
|
||||
}
|
||||
|
||||
await new Promise((resolve) => setTimeout(resolve, 2000));
|
||||
}
|
||||
|
||||
console.log(
|
||||
chalk.yellow(
|
||||
'Twenty server did not become healthy in time.\n',
|
||||
"Check: 'yarn twenty server logs'\n",
|
||||
),
|
||||
);
|
||||
|
||||
return { running: false };
|
||||
};
|
||||
@@ -5,7 +5,7 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
|
||||
First, authenticate to your workspace:
|
||||
|
||||
```bash
|
||||
yarn twenty remote add --local
|
||||
yarn twenty remote add http://localhost:2020 --as local
|
||||
```
|
||||
|
||||
Then, start development mode to sync your app and watch for changes:
|
||||
@@ -22,7 +22,7 @@ Run `yarn twenty help` to list all available commands. Common commands:
|
||||
|
||||
```bash
|
||||
# Remotes & Authentication
|
||||
yarn twenty remote add --local # Authenticate with Twenty
|
||||
yarn twenty remote add http://localhost:2020 --as local # Authenticate with Twenty
|
||||
yarn twenty remote status # Check auth status
|
||||
yarn twenty remote switch # Switch default remote
|
||||
yarn twenty remote list # List all configured remotes
|
||||
|
||||
@@ -5,7 +5,7 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
|
||||
First, authenticate to your workspace:
|
||||
|
||||
```bash
|
||||
yarn twenty remote add --local
|
||||
yarn twenty remote add http://localhost:2020 --as local
|
||||
```
|
||||
|
||||
Then, start development mode to sync your app and watch for changes:
|
||||
@@ -22,7 +22,7 @@ Run `yarn twenty help` to list all available commands. Common commands:
|
||||
|
||||
```bash
|
||||
# Remotes & Authentication
|
||||
yarn twenty remote add --local # Authenticate with Twenty
|
||||
yarn twenty remote add http://localhost:2020 --as local # Authenticate with Twenty
|
||||
yarn twenty remote status # Check auth status
|
||||
yarn twenty remote switch # Switch default remote
|
||||
yarn twenty remote list # List all configured remotes
|
||||
|
||||
@@ -5,7 +5,7 @@ This is a [Twenty](https://twenty.com) application project bootstrapped with [`c
|
||||
First, authenticate to your workspace:
|
||||
|
||||
```bash
|
||||
yarn twenty remote add --local
|
||||
yarn twenty remote add http://localhost:2020 --as local
|
||||
```
|
||||
|
||||
Then, start development mode to sync your app and watch for changes:
|
||||
@@ -22,7 +22,7 @@ Run `yarn twenty help` to list all available commands. Common commands:
|
||||
|
||||
```bash
|
||||
# Remotes & Authentication
|
||||
yarn twenty remote add --local # Authenticate with Twenty
|
||||
yarn twenty remote add http://localhost:2020 --as local # Authenticate with Twenty
|
||||
yarn twenty remote status # Check auth status
|
||||
yarn twenty remote switch # Switch default remote
|
||||
yarn twenty remote list # List all configured remotes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "twenty-client-sdk",
|
||||
"version": "0.7.0-canary.0",
|
||||
"version": "0.8.0-canary.5",
|
||||
"sideEffects": false,
|
||||
"license": "AGPL-3.0",
|
||||
"scripts": {
|
||||
|
||||
@@ -343,6 +343,7 @@ type Field {
|
||||
defaultValue: JSON
|
||||
options: JSON
|
||||
settings: JSON
|
||||
objectMetadataId: UUID!
|
||||
isLabelSyncedWithName: Boolean
|
||||
morphId: UUID
|
||||
createdAt: DateTime!
|
||||
@@ -540,6 +541,7 @@ input FieldFilter {
|
||||
isActive: BooleanFieldComparison
|
||||
isSystem: BooleanFieldComparison
|
||||
isUIReadOnly: BooleanFieldComparison
|
||||
objectMetadataId: UUIDFilterComparison
|
||||
}
|
||||
|
||||
input IndexFilter {
|
||||
@@ -778,8 +780,7 @@ type Workspace {
|
||||
viewGroups: [ViewGroup!]
|
||||
viewSorts: [ViewSort!]
|
||||
metadataVersion: Float!
|
||||
databaseUrl: String!
|
||||
databaseSchema: String!
|
||||
databaseSchema: String
|
||||
subdomain: String!
|
||||
customDomain: String
|
||||
isGoogleAuthEnabled: Boolean!
|
||||
@@ -1724,20 +1725,13 @@ enum FeatureFlagKey {
|
||||
IS_UNIQUE_INDEXES_ENABLED
|
||||
IS_JSON_FILTER_ENABLED
|
||||
IS_AI_ENABLED
|
||||
IS_APPLICATION_ENABLED
|
||||
IS_MARKETPLACE_ENABLED
|
||||
IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED
|
||||
IS_PUBLIC_DOMAIN_ENABLED
|
||||
IS_EMAILING_DOMAIN_ENABLED
|
||||
IS_DASHBOARD_V2_ENABLED
|
||||
IS_ATTACHMENT_MIGRATED
|
||||
IS_NOTE_TARGET_MIGRATED
|
||||
IS_TASK_TARGET_MIGRATED
|
||||
IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED
|
||||
IS_JUNCTION_RELATIONS_ENABLED
|
||||
IS_COMMAND_MENU_ITEM_ENABLED
|
||||
IS_NAVIGATION_MENU_ITEM_ENABLED
|
||||
IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED
|
||||
IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED
|
||||
IS_DRAFT_EMAIL_ENABLED
|
||||
IS_USAGE_ANALYTICS_ENABLED
|
||||
@@ -1746,6 +1740,8 @@ enum FeatureFlagKey {
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED
|
||||
IS_GRAPHQL_QUERY_TIMING_ENABLED
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED
|
||||
IS_DATASOURCE_MIGRATED
|
||||
}
|
||||
|
||||
type ClientConfig {
|
||||
@@ -1778,6 +1774,12 @@ type ClientConfig {
|
||||
isClickHouseConfigured: Boolean!
|
||||
}
|
||||
|
||||
type UsageBreakdownItem {
|
||||
key: String!
|
||||
label: String
|
||||
creditsUsed: Float!
|
||||
}
|
||||
|
||||
type ConfigVariable {
|
||||
name: String!
|
||||
description: String!
|
||||
@@ -2272,6 +2274,11 @@ type FieldConnection {
|
||||
edges: [FieldEdge!]!
|
||||
}
|
||||
|
||||
type LogicFunctionLogs {
|
||||
"""Execution Logs"""
|
||||
logs: String!
|
||||
}
|
||||
|
||||
type DeleteTwoFactorAuthenticationMethod {
|
||||
"""Boolean that confirms query was dispatched"""
|
||||
success: Boolean!
|
||||
@@ -2372,6 +2379,26 @@ type Impersonate {
|
||||
workspace: WorkspaceUrlsAndId!
|
||||
}
|
||||
|
||||
type UsageTimeSeries {
|
||||
date: String!
|
||||
creditsUsed: Float!
|
||||
}
|
||||
|
||||
type UsageUserDaily {
|
||||
userWorkspaceId: String!
|
||||
dailyUsage: [UsageTimeSeries!]!
|
||||
}
|
||||
|
||||
type UsageAnalytics {
|
||||
usageByUser: [UsageBreakdownItem!]!
|
||||
usageByOperationType: [UsageBreakdownItem!]!
|
||||
usageByModel: [UsageBreakdownItem!]!
|
||||
timeSeries: [UsageTimeSeries!]!
|
||||
periodStart: DateTime!
|
||||
periodEnd: DateTime!
|
||||
userDailyUsage: UsageUserDaily
|
||||
}
|
||||
|
||||
type DevelopmentApplication {
|
||||
id: String!
|
||||
universalIdentifier: String!
|
||||
@@ -2567,36 +2594,6 @@ type PostgresCredentials {
|
||||
workspaceId: UUID!
|
||||
}
|
||||
|
||||
type UsageBreakdownItem {
|
||||
key: String!
|
||||
label: String
|
||||
creditsUsed: Float!
|
||||
}
|
||||
|
||||
type UsageTimeSeries {
|
||||
date: String!
|
||||
creditsUsed: Float!
|
||||
}
|
||||
|
||||
type UsageUserDaily {
|
||||
userWorkspaceId: String!
|
||||
dailyUsage: [UsageTimeSeries!]!
|
||||
}
|
||||
|
||||
type UsageAnalytics {
|
||||
usageByUser: [UsageBreakdownItem!]!
|
||||
usageByOperationType: [UsageBreakdownItem!]!
|
||||
timeSeries: [UsageTimeSeries!]!
|
||||
periodStart: DateTime!
|
||||
periodEnd: DateTime!
|
||||
userDailyUsage: UsageUserDaily
|
||||
}
|
||||
|
||||
type LogicFunctionLogs {
|
||||
"""Execution Logs"""
|
||||
logs: String!
|
||||
}
|
||||
|
||||
type FrontComponent {
|
||||
id: UUID!
|
||||
name: String!
|
||||
@@ -3089,6 +3086,7 @@ enum AllMetadataName {
|
||||
navigationMenuItem
|
||||
permissionFlag
|
||||
objectPermission
|
||||
fieldPermission
|
||||
frontComponent
|
||||
webhook
|
||||
}
|
||||
@@ -3270,6 +3268,8 @@ type Query {
|
||||
getAiProviders: JSON!
|
||||
getModelsDevProviders: [ModelsDevProviderSuggestion!]!
|
||||
getModelsDevSuggestions(providerType: String!): [ModelsDevModelSuggestion!]!
|
||||
getAdminAiUsageByWorkspace(periodStart: DateTime, periodEnd: DateTime): [UsageBreakdownItem!]!
|
||||
getUsageAnalytics(input: UsageAnalyticsInput): UsageAnalytics!
|
||||
getPostgresCredentials: PostgresCredentials
|
||||
findManyPublicDomains: [PublicDomain!]!
|
||||
getEmailingDomains: [EmailingDomain!]!
|
||||
@@ -3277,7 +3277,6 @@ type Query {
|
||||
findOneMarketplaceApp(universalIdentifier: String!): MarketplaceApp!
|
||||
findManyApplications: [Application!]!
|
||||
findOneApplication(id: UUID, universalIdentifier: UUID): Application!
|
||||
getUsageAnalytics(input: UsageAnalyticsInput): UsageAnalytics!
|
||||
}
|
||||
|
||||
input GetApiKeyInput {
|
||||
@@ -3390,6 +3389,14 @@ input UsageAnalyticsInput {
|
||||
periodStart: DateTime
|
||||
periodEnd: DateTime
|
||||
userWorkspaceId: String
|
||||
operationTypes: [UsageOperationType!]
|
||||
}
|
||||
|
||||
enum UsageOperationType {
|
||||
AI_CHAT_TOKEN
|
||||
AI_WORKFLOW_TOKEN
|
||||
WORKFLOW_EXECUTION
|
||||
CODE_EXECUTION
|
||||
}
|
||||
|
||||
type Mutation {
|
||||
@@ -3500,6 +3507,7 @@ type Mutation {
|
||||
createViewGroup(input: CreateViewGroupInput!): ViewGroup!
|
||||
createManyViewGroups(inputs: [CreateViewGroupInput!]!): [ViewGroup!]!
|
||||
updateViewGroup(input: UpdateViewGroupInput!): ViewGroup!
|
||||
updateManyViewGroups(inputs: [UpdateViewGroupInput!]!): [ViewGroup!]!
|
||||
deleteViewGroup(input: DeleteViewGroupInput!): ViewGroup!
|
||||
destroyViewGroup(input: DestroyViewGroupInput!): ViewGroup!
|
||||
updateMessageFolder(input: UpdateMessageFolderInput!): MessageFolder!
|
||||
@@ -4089,6 +4097,7 @@ input UpdateObjectPayload {
|
||||
labelIdentifierFieldMetadataId: UUID
|
||||
imageIdentifierFieldMetadataId: UUID
|
||||
isLabelSyncedWithName: Boolean
|
||||
isSearchable: Boolean
|
||||
}
|
||||
|
||||
input UpdateViewFieldInput {
|
||||
@@ -4270,8 +4279,8 @@ input CreateFieldInput {
|
||||
defaultValue: JSON
|
||||
options: JSON
|
||||
settings: JSON
|
||||
isLabelSyncedWithName: Boolean
|
||||
objectMetadataId: UUID!
|
||||
isLabelSyncedWithName: Boolean
|
||||
isRemoteCreation: Boolean
|
||||
relationCreationPayload: JSON
|
||||
morphRelationsCreationPayload: [JSON!]
|
||||
@@ -4299,6 +4308,7 @@ input UpdateFieldInput {
|
||||
defaultValue: JSON
|
||||
options: JSON
|
||||
settings: JSON
|
||||
objectMetadataId: UUID
|
||||
isLabelSyncedWithName: Boolean
|
||||
morphRelationsUpdatePayload: [JSON!]
|
||||
}
|
||||
|
||||
@@ -296,6 +296,7 @@ export interface Field {
|
||||
defaultValue?: Scalars['JSON']
|
||||
options?: Scalars['JSON']
|
||||
settings?: Scalars['JSON']
|
||||
objectMetadataId: Scalars['UUID']
|
||||
isLabelSyncedWithName?: Scalars['Boolean']
|
||||
morphId?: Scalars['UUID']
|
||||
createdAt: Scalars['DateTime']
|
||||
@@ -564,8 +565,7 @@ export interface Workspace {
|
||||
viewGroups?: ViewGroup[]
|
||||
viewSorts?: ViewSort[]
|
||||
metadataVersion: Scalars['Float']
|
||||
databaseUrl: Scalars['String']
|
||||
databaseSchema: Scalars['String']
|
||||
databaseSchema?: Scalars['String']
|
||||
subdomain: Scalars['String']
|
||||
customDomain?: Scalars['String']
|
||||
isGoogleAuthEnabled: Scalars['Boolean']
|
||||
@@ -1427,7 +1427,7 @@ export interface PublicFeatureFlag {
|
||||
__typename: 'PublicFeatureFlag'
|
||||
}
|
||||
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_APPLICATION_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_DASHBOARD_V2_ENABLED' | 'IS_ATTACHMENT_MIGRATED' | 'IS_NOTE_TARGET_MIGRATED' | 'IS_TASK_TARGET_MIGRATED' | 'IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_ENABLED' | 'IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_GRAPHQL_QUERY_TIMING_ENABLED'
|
||||
export type FeatureFlagKey = 'IS_UNIQUE_INDEXES_ENABLED' | 'IS_JSON_FILTER_ENABLED' | 'IS_AI_ENABLED' | 'IS_MARKETPLACE_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' | 'IS_PUBLIC_DOMAIN_ENABLED' | 'IS_EMAILING_DOMAIN_ENABLED' | 'IS_JUNCTION_RELATIONS_ENABLED' | 'IS_COMMAND_MENU_ITEM_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_ENABLED' | 'IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED' | 'IS_DRAFT_EMAIL_ENABLED' | 'IS_USAGE_ANALYTICS_ENABLED' | 'IS_RICH_TEXT_V1_MIGRATED' | 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' | 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' | 'IS_CONNECTED_ACCOUNT_MIGRATED' | 'IS_GRAPHQL_QUERY_TIMING_ENABLED' | 'IS_RECORD_TABLE_WIDGET_ENABLED' | 'IS_DATASOURCE_MIGRATED'
|
||||
|
||||
export interface ClientConfig {
|
||||
appVersion?: Scalars['String']
|
||||
@@ -1460,6 +1460,13 @@ export interface ClientConfig {
|
||||
__typename: 'ClientConfig'
|
||||
}
|
||||
|
||||
export interface UsageBreakdownItem {
|
||||
key: Scalars['String']
|
||||
label?: Scalars['String']
|
||||
creditsUsed: Scalars['Float']
|
||||
__typename: 'UsageBreakdownItem'
|
||||
}
|
||||
|
||||
export interface ConfigVariable {
|
||||
name: Scalars['String']
|
||||
description: Scalars['String']
|
||||
@@ -1937,6 +1944,12 @@ export interface FieldConnection {
|
||||
__typename: 'FieldConnection'
|
||||
}
|
||||
|
||||
export interface LogicFunctionLogs {
|
||||
/** Execution Logs */
|
||||
logs: Scalars['String']
|
||||
__typename: 'LogicFunctionLogs'
|
||||
}
|
||||
|
||||
export interface DeleteTwoFactorAuthenticationMethod {
|
||||
/** Boolean that confirms query was dispatched */
|
||||
success: Scalars['Boolean']
|
||||
@@ -2058,6 +2071,29 @@ export interface Impersonate {
|
||||
__typename: 'Impersonate'
|
||||
}
|
||||
|
||||
export interface UsageTimeSeries {
|
||||
date: Scalars['String']
|
||||
creditsUsed: Scalars['Float']
|
||||
__typename: 'UsageTimeSeries'
|
||||
}
|
||||
|
||||
export interface UsageUserDaily {
|
||||
userWorkspaceId: Scalars['String']
|
||||
dailyUsage: UsageTimeSeries[]
|
||||
__typename: 'UsageUserDaily'
|
||||
}
|
||||
|
||||
export interface UsageAnalytics {
|
||||
usageByUser: UsageBreakdownItem[]
|
||||
usageByOperationType: UsageBreakdownItem[]
|
||||
usageByModel: UsageBreakdownItem[]
|
||||
timeSeries: UsageTimeSeries[]
|
||||
periodStart: Scalars['DateTime']
|
||||
periodEnd: Scalars['DateTime']
|
||||
userDailyUsage?: UsageUserDaily
|
||||
__typename: 'UsageAnalytics'
|
||||
}
|
||||
|
||||
export interface DevelopmentApplication {
|
||||
id: Scalars['String']
|
||||
universalIdentifier: Scalars['String']
|
||||
@@ -2269,41 +2305,6 @@ export interface PostgresCredentials {
|
||||
__typename: 'PostgresCredentials'
|
||||
}
|
||||
|
||||
export interface UsageBreakdownItem {
|
||||
key: Scalars['String']
|
||||
label?: Scalars['String']
|
||||
creditsUsed: Scalars['Float']
|
||||
__typename: 'UsageBreakdownItem'
|
||||
}
|
||||
|
||||
export interface UsageTimeSeries {
|
||||
date: Scalars['String']
|
||||
creditsUsed: Scalars['Float']
|
||||
__typename: 'UsageTimeSeries'
|
||||
}
|
||||
|
||||
export interface UsageUserDaily {
|
||||
userWorkspaceId: Scalars['String']
|
||||
dailyUsage: UsageTimeSeries[]
|
||||
__typename: 'UsageUserDaily'
|
||||
}
|
||||
|
||||
export interface UsageAnalytics {
|
||||
usageByUser: UsageBreakdownItem[]
|
||||
usageByOperationType: UsageBreakdownItem[]
|
||||
timeSeries: UsageTimeSeries[]
|
||||
periodStart: Scalars['DateTime']
|
||||
periodEnd: Scalars['DateTime']
|
||||
userDailyUsage?: UsageUserDaily
|
||||
__typename: 'UsageAnalytics'
|
||||
}
|
||||
|
||||
export interface LogicFunctionLogs {
|
||||
/** Execution Logs */
|
||||
logs: Scalars['String']
|
||||
__typename: 'LogicFunctionLogs'
|
||||
}
|
||||
|
||||
export interface FrontComponent {
|
||||
id: Scalars['UUID']
|
||||
name: Scalars['String']
|
||||
@@ -2676,7 +2677,7 @@ export interface CollectionHash {
|
||||
__typename: 'CollectionHash'
|
||||
}
|
||||
|
||||
export type AllMetadataName = 'fieldMetadata' | 'objectMetadata' | 'view' | 'viewField' | 'viewFieldGroup' | 'viewGroup' | 'viewSort' | 'rowLevelPermissionPredicate' | 'rowLevelPermissionPredicateGroup' | 'viewFilterGroup' | 'index' | 'logicFunction' | 'viewFilter' | 'role' | 'roleTarget' | 'agent' | 'skill' | 'pageLayout' | 'pageLayoutWidget' | 'pageLayoutTab' | 'commandMenuItem' | 'navigationMenuItem' | 'permissionFlag' | 'objectPermission' | 'frontComponent' | 'webhook'
|
||||
export type AllMetadataName = 'fieldMetadata' | 'objectMetadata' | 'view' | 'viewField' | 'viewFieldGroup' | 'viewGroup' | 'viewSort' | 'rowLevelPermissionPredicate' | 'rowLevelPermissionPredicateGroup' | 'viewFilterGroup' | 'index' | 'logicFunction' | 'viewFilter' | 'role' | 'roleTarget' | 'agent' | 'skill' | 'pageLayout' | 'pageLayoutWidget' | 'pageLayoutTab' | 'commandMenuItem' | 'navigationMenuItem' | 'permissionFlag' | 'objectPermission' | 'fieldPermission' | 'frontComponent' | 'webhook'
|
||||
|
||||
export interface MinimalObjectMetadata {
|
||||
id: Scalars['UUID']
|
||||
@@ -2823,6 +2824,8 @@ export interface Query {
|
||||
getAiProviders: Scalars['JSON']
|
||||
getModelsDevProviders: ModelsDevProviderSuggestion[]
|
||||
getModelsDevSuggestions: ModelsDevModelSuggestion[]
|
||||
getAdminAiUsageByWorkspace: UsageBreakdownItem[]
|
||||
getUsageAnalytics: UsageAnalytics
|
||||
getPostgresCredentials?: PostgresCredentials
|
||||
findManyPublicDomains: PublicDomain[]
|
||||
getEmailingDomains: EmailingDomain[]
|
||||
@@ -2830,7 +2833,6 @@ export interface Query {
|
||||
findOneMarketplaceApp: MarketplaceApp
|
||||
findManyApplications: Application[]
|
||||
findOneApplication: Application
|
||||
getUsageAnalytics: UsageAnalytics
|
||||
__typename: 'Query'
|
||||
}
|
||||
|
||||
@@ -2846,6 +2848,8 @@ export type SortNulls = 'NULLS_FIRST' | 'NULLS_LAST'
|
||||
|
||||
export type EventLogTable = 'WORKSPACE_EVENT' | 'PAGEVIEW' | 'OBJECT_EVENT' | 'USAGE_EVENT'
|
||||
|
||||
export type UsageOperationType = 'AI_CHAT_TOKEN' | 'AI_WORKFLOW_TOKEN' | 'WORKFLOW_EXECUTION' | 'CODE_EXECUTION'
|
||||
|
||||
export interface Mutation {
|
||||
addQueryToEventStream: Scalars['Boolean']
|
||||
removeQueryFromEventStream: Scalars['Boolean']
|
||||
@@ -2954,6 +2958,7 @@ export interface Mutation {
|
||||
createViewGroup: ViewGroup
|
||||
createManyViewGroups: ViewGroup[]
|
||||
updateViewGroup: ViewGroup
|
||||
updateManyViewGroups: ViewGroup[]
|
||||
deleteViewGroup: ViewGroup
|
||||
destroyViewGroup: ViewGroup
|
||||
updateMessageFolder: MessageFolder
|
||||
@@ -3360,6 +3365,7 @@ export interface FieldGenqlSelection{
|
||||
defaultValue?: boolean | number
|
||||
options?: boolean | number
|
||||
settings?: boolean | number
|
||||
objectMetadataId?: boolean | number
|
||||
isLabelSyncedWithName?: boolean | number
|
||||
morphId?: boolean | number
|
||||
createdAt?: boolean | number
|
||||
@@ -3476,7 +3482,7 @@ export interface ObjectGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface FieldFilter {and?: (FieldFilter[] | null),or?: (FieldFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null),isActive?: (BooleanFieldComparison | null),isSystem?: (BooleanFieldComparison | null),isUIReadOnly?: (BooleanFieldComparison | null)}
|
||||
export interface FieldFilter {and?: (FieldFilter[] | null),or?: (FieldFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null),isActive?: (BooleanFieldComparison | null),isSystem?: (BooleanFieldComparison | null),isUIReadOnly?: (BooleanFieldComparison | null),objectMetadataId?: (UUIDFilterComparison | null)}
|
||||
|
||||
export interface IndexFilter {and?: (IndexFilter[] | null),or?: (IndexFilter[] | null),id?: (UUIDFilterComparison | null),isCustom?: (BooleanFieldComparison | null)}
|
||||
|
||||
@@ -3653,7 +3659,6 @@ export interface WorkspaceGenqlSelection{
|
||||
viewGroups?: ViewGroupGenqlSelection
|
||||
viewSorts?: ViewSortGenqlSelection
|
||||
metadataVersion?: boolean | number
|
||||
databaseUrl?: boolean | number
|
||||
databaseSchema?: boolean | number
|
||||
subdomain?: boolean | number
|
||||
customDomain?: boolean | number
|
||||
@@ -4584,6 +4589,14 @@ export interface ClientConfigGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageBreakdownItemGenqlSelection{
|
||||
key?: boolean | number
|
||||
label?: boolean | number
|
||||
creditsUsed?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface ConfigVariableGenqlSelection{
|
||||
name?: boolean | number
|
||||
description?: boolean | number
|
||||
@@ -5096,6 +5109,13 @@ export interface FieldConnectionGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface LogicFunctionLogsGenqlSelection{
|
||||
/** Execution Logs */
|
||||
logs?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface DeleteTwoFactorAuthenticationMethodGenqlSelection{
|
||||
/** Boolean that confirms query was dispatched */
|
||||
success?: boolean | number
|
||||
@@ -5238,6 +5258,32 @@ export interface ImpersonateGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageTimeSeriesGenqlSelection{
|
||||
date?: boolean | number
|
||||
creditsUsed?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageUserDailyGenqlSelection{
|
||||
userWorkspaceId?: boolean | number
|
||||
dailyUsage?: UsageTimeSeriesGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageAnalyticsGenqlSelection{
|
||||
usageByUser?: UsageBreakdownItemGenqlSelection
|
||||
usageByOperationType?: UsageBreakdownItemGenqlSelection
|
||||
usageByModel?: UsageBreakdownItemGenqlSelection
|
||||
timeSeries?: UsageTimeSeriesGenqlSelection
|
||||
periodStart?: boolean | number
|
||||
periodEnd?: boolean | number
|
||||
userDailyUsage?: UsageUserDailyGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface DevelopmentApplicationGenqlSelection{
|
||||
id?: boolean | number
|
||||
universalIdentifier?: boolean | number
|
||||
@@ -5468,46 +5514,6 @@ export interface PostgresCredentialsGenqlSelection{
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageBreakdownItemGenqlSelection{
|
||||
key?: boolean | number
|
||||
label?: boolean | number
|
||||
creditsUsed?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageTimeSeriesGenqlSelection{
|
||||
date?: boolean | number
|
||||
creditsUsed?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageUserDailyGenqlSelection{
|
||||
userWorkspaceId?: boolean | number
|
||||
dailyUsage?: UsageTimeSeriesGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface UsageAnalyticsGenqlSelection{
|
||||
usageByUser?: UsageBreakdownItemGenqlSelection
|
||||
usageByOperationType?: UsageBreakdownItemGenqlSelection
|
||||
timeSeries?: UsageTimeSeriesGenqlSelection
|
||||
periodStart?: boolean | number
|
||||
periodEnd?: boolean | number
|
||||
userDailyUsage?: UsageUserDailyGenqlSelection
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface LogicFunctionLogsGenqlSelection{
|
||||
/** Execution Logs */
|
||||
logs?: boolean | number
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
|
||||
export interface FrontComponentGenqlSelection{
|
||||
id?: boolean | number
|
||||
name?: boolean | number
|
||||
@@ -6055,6 +6061,8 @@ export interface QueryGenqlSelection{
|
||||
getAiProviders?: boolean | number
|
||||
getModelsDevProviders?: ModelsDevProviderSuggestionGenqlSelection
|
||||
getModelsDevSuggestions?: (ModelsDevModelSuggestionGenqlSelection & { __args: {providerType: Scalars['String']} })
|
||||
getAdminAiUsageByWorkspace?: (UsageBreakdownItemGenqlSelection & { __args?: {periodStart?: (Scalars['DateTime'] | null), periodEnd?: (Scalars['DateTime'] | null)} })
|
||||
getUsageAnalytics?: (UsageAnalyticsGenqlSelection & { __args?: {input?: (UsageAnalyticsInput | null)} })
|
||||
getPostgresCredentials?: PostgresCredentialsGenqlSelection
|
||||
findManyPublicDomains?: PublicDomainGenqlSelection
|
||||
getEmailingDomains?: EmailingDomainGenqlSelection
|
||||
@@ -6062,7 +6070,6 @@ export interface QueryGenqlSelection{
|
||||
findOneMarketplaceApp?: (MarketplaceAppGenqlSelection & { __args: {universalIdentifier: Scalars['String']} })
|
||||
findManyApplications?: ApplicationGenqlSelection
|
||||
findOneApplication?: (ApplicationGenqlSelection & { __args?: {id?: (Scalars['UUID'] | null), universalIdentifier?: (Scalars['UUID'] | null)} })
|
||||
getUsageAnalytics?: (UsageAnalyticsGenqlSelection & { __args?: {input?: (UsageAnalyticsInput | null)} })
|
||||
__typename?: boolean | number
|
||||
__scalar?: boolean | number
|
||||
}
|
||||
@@ -6097,7 +6104,7 @@ export interface LineChartDataInput {objectMetadataId: Scalars['UUID'],configura
|
||||
|
||||
export interface BarChartDataInput {objectMetadataId: Scalars['UUID'],configuration: Scalars['JSON']}
|
||||
|
||||
export interface UsageAnalyticsInput {periodStart?: (Scalars['DateTime'] | null),periodEnd?: (Scalars['DateTime'] | null),userWorkspaceId?: (Scalars['String'] | null)}
|
||||
export interface UsageAnalyticsInput {periodStart?: (Scalars['DateTime'] | null),periodEnd?: (Scalars['DateTime'] | null),userWorkspaceId?: (Scalars['String'] | null),operationTypes?: (UsageOperationType[] | null)}
|
||||
|
||||
export interface MutationGenqlSelection{
|
||||
addQueryToEventStream?: { __args: {input: AddQuerySubscriptionInput} }
|
||||
@@ -6207,6 +6214,7 @@ export interface MutationGenqlSelection{
|
||||
createViewGroup?: (ViewGroupGenqlSelection & { __args: {input: CreateViewGroupInput} })
|
||||
createManyViewGroups?: (ViewGroupGenqlSelection & { __args: {inputs: CreateViewGroupInput[]} })
|
||||
updateViewGroup?: (ViewGroupGenqlSelection & { __args: {input: UpdateViewGroupInput} })
|
||||
updateManyViewGroups?: (ViewGroupGenqlSelection & { __args: {inputs: UpdateViewGroupInput[]} })
|
||||
deleteViewGroup?: (ViewGroupGenqlSelection & { __args: {input: DeleteViewGroupInput} })
|
||||
destroyViewGroup?: (ViewGroupGenqlSelection & { __args: {input: DestroyViewGroupInput} })
|
||||
updateMessageFolder?: (MessageFolderGenqlSelection & { __args: {input: UpdateMessageFolderInput} })
|
||||
@@ -6475,7 +6483,7 @@ export interface UpdateOneObjectInput {update: UpdateObjectPayload,
|
||||
/** The id of the object to update */
|
||||
id: Scalars['UUID']}
|
||||
|
||||
export interface UpdateObjectPayload {labelSingular?: (Scalars['String'] | null),labelPlural?: (Scalars['String'] | null),nameSingular?: (Scalars['String'] | null),namePlural?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),shortcut?: (Scalars['String'] | null),color?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),labelIdentifierFieldMetadataId?: (Scalars['UUID'] | null),imageIdentifierFieldMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null)}
|
||||
export interface UpdateObjectPayload {labelSingular?: (Scalars['String'] | null),labelPlural?: (Scalars['String'] | null),nameSingular?: (Scalars['String'] | null),namePlural?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),shortcut?: (Scalars['String'] | null),color?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),labelIdentifierFieldMetadataId?: (Scalars['UUID'] | null),imageIdentifierFieldMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),isSearchable?: (Scalars['Boolean'] | null)}
|
||||
|
||||
export interface UpdateViewFieldInput {
|
||||
/** The id of the view field to update */
|
||||
@@ -6527,7 +6535,7 @@ export interface CreateOneFieldMetadataInput {
|
||||
/** The record to create */
|
||||
field: CreateFieldInput}
|
||||
|
||||
export interface CreateFieldInput {type: FieldMetadataType,name: Scalars['String'],label: Scalars['String'],description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isCustom?: (Scalars['Boolean'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),objectMetadataId: Scalars['UUID'],isRemoteCreation?: (Scalars['Boolean'] | null),relationCreationPayload?: (Scalars['JSON'] | null),morphRelationsCreationPayload?: (Scalars['JSON'][] | null)}
|
||||
export interface CreateFieldInput {type: FieldMetadataType,name: Scalars['String'],label: Scalars['String'],description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isCustom?: (Scalars['Boolean'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),objectMetadataId: Scalars['UUID'],isLabelSyncedWithName?: (Scalars['Boolean'] | null),isRemoteCreation?: (Scalars['Boolean'] | null),relationCreationPayload?: (Scalars['JSON'] | null),morphRelationsCreationPayload?: (Scalars['JSON'][] | null)}
|
||||
|
||||
export interface UpdateOneFieldMetadataInput {
|
||||
/** The id of the record to update */
|
||||
@@ -6535,7 +6543,7 @@ id: Scalars['UUID'],
|
||||
/** The record to update */
|
||||
update: UpdateFieldInput}
|
||||
|
||||
export interface UpdateFieldInput {universalIdentifier?: (Scalars['String'] | null),name?: (Scalars['String'] | null),label?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),morphRelationsUpdatePayload?: (Scalars['JSON'][] | null)}
|
||||
export interface UpdateFieldInput {universalIdentifier?: (Scalars['String'] | null),name?: (Scalars['String'] | null),label?: (Scalars['String'] | null),description?: (Scalars['String'] | null),icon?: (Scalars['String'] | null),isActive?: (Scalars['Boolean'] | null),isSystem?: (Scalars['Boolean'] | null),isUIReadOnly?: (Scalars['Boolean'] | null),isNullable?: (Scalars['Boolean'] | null),isUnique?: (Scalars['Boolean'] | null),defaultValue?: (Scalars['JSON'] | null),options?: (Scalars['JSON'] | null),settings?: (Scalars['JSON'] | null),objectMetadataId?: (Scalars['UUID'] | null),isLabelSyncedWithName?: (Scalars['Boolean'] | null),morphRelationsUpdatePayload?: (Scalars['JSON'][] | null)}
|
||||
|
||||
export interface DeleteOneFieldInput {
|
||||
/** The id of the field to delete. */
|
||||
@@ -7591,6 +7599,14 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const UsageBreakdownItem_possibleTypes: string[] = ['UsageBreakdownItem']
|
||||
export const isUsageBreakdownItem = (obj?: { __typename?: any } | null): obj is UsageBreakdownItem => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageBreakdownItem"')
|
||||
return UsageBreakdownItem_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const ConfigVariable_possibleTypes: string[] = ['ConfigVariable']
|
||||
export const isConfigVariable = (obj?: { __typename?: any } | null): obj is ConfigVariable => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isConfigVariable"')
|
||||
@@ -8047,6 +8063,14 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const LogicFunctionLogs_possibleTypes: string[] = ['LogicFunctionLogs']
|
||||
export const isLogicFunctionLogs = (obj?: { __typename?: any } | null): obj is LogicFunctionLogs => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isLogicFunctionLogs"')
|
||||
return LogicFunctionLogs_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const DeleteTwoFactorAuthenticationMethod_possibleTypes: string[] = ['DeleteTwoFactorAuthenticationMethod']
|
||||
export const isDeleteTwoFactorAuthenticationMethod = (obj?: { __typename?: any } | null): obj is DeleteTwoFactorAuthenticationMethod => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isDeleteTwoFactorAuthenticationMethod"')
|
||||
@@ -8215,6 +8239,30 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const UsageTimeSeries_possibleTypes: string[] = ['UsageTimeSeries']
|
||||
export const isUsageTimeSeries = (obj?: { __typename?: any } | null): obj is UsageTimeSeries => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageTimeSeries"')
|
||||
return UsageTimeSeries_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const UsageUserDaily_possibleTypes: string[] = ['UsageUserDaily']
|
||||
export const isUsageUserDaily = (obj?: { __typename?: any } | null): obj is UsageUserDaily => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageUserDaily"')
|
||||
return UsageUserDaily_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const UsageAnalytics_possibleTypes: string[] = ['UsageAnalytics']
|
||||
export const isUsageAnalytics = (obj?: { __typename?: any } | null): obj is UsageAnalytics => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageAnalytics"')
|
||||
return UsageAnalytics_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const DevelopmentApplication_possibleTypes: string[] = ['DevelopmentApplication']
|
||||
export const isDevelopmentApplication = (obj?: { __typename?: any } | null): obj is DevelopmentApplication => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isDevelopmentApplication"')
|
||||
@@ -8399,46 +8447,6 @@ export interface LogicFunctionLogsInput {applicationId?: (Scalars['UUID'] | null
|
||||
|
||||
|
||||
|
||||
const UsageBreakdownItem_possibleTypes: string[] = ['UsageBreakdownItem']
|
||||
export const isUsageBreakdownItem = (obj?: { __typename?: any } | null): obj is UsageBreakdownItem => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageBreakdownItem"')
|
||||
return UsageBreakdownItem_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const UsageTimeSeries_possibleTypes: string[] = ['UsageTimeSeries']
|
||||
export const isUsageTimeSeries = (obj?: { __typename?: any } | null): obj is UsageTimeSeries => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageTimeSeries"')
|
||||
return UsageTimeSeries_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const UsageUserDaily_possibleTypes: string[] = ['UsageUserDaily']
|
||||
export const isUsageUserDaily = (obj?: { __typename?: any } | null): obj is UsageUserDaily => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageUserDaily"')
|
||||
return UsageUserDaily_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const UsageAnalytics_possibleTypes: string[] = ['UsageAnalytics']
|
||||
export const isUsageAnalytics = (obj?: { __typename?: any } | null): obj is UsageAnalytics => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isUsageAnalytics"')
|
||||
return UsageAnalytics_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const LogicFunctionLogs_possibleTypes: string[] = ['LogicFunctionLogs']
|
||||
export const isLogicFunctionLogs = (obj?: { __typename?: any } | null): obj is LogicFunctionLogs => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isLogicFunctionLogs"')
|
||||
return LogicFunctionLogs_possibleTypes.includes(obj.__typename)
|
||||
}
|
||||
|
||||
|
||||
|
||||
const FrontComponent_possibleTypes: string[] = ['FrontComponent']
|
||||
export const isFrontComponent = (obj?: { __typename?: any } | null): obj is FrontComponent => {
|
||||
if (!obj?.__typename) throw new Error('__typename is missing in "isFrontComponent"')
|
||||
@@ -9133,20 +9141,13 @@ export const enumFeatureFlagKey = {
|
||||
IS_UNIQUE_INDEXES_ENABLED: 'IS_UNIQUE_INDEXES_ENABLED' as const,
|
||||
IS_JSON_FILTER_ENABLED: 'IS_JSON_FILTER_ENABLED' as const,
|
||||
IS_AI_ENABLED: 'IS_AI_ENABLED' as const,
|
||||
IS_APPLICATION_ENABLED: 'IS_APPLICATION_ENABLED' as const,
|
||||
IS_MARKETPLACE_ENABLED: 'IS_MARKETPLACE_ENABLED' as const,
|
||||
IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED: 'IS_RECORD_PAGE_LAYOUT_EDITING_ENABLED' as const,
|
||||
IS_PUBLIC_DOMAIN_ENABLED: 'IS_PUBLIC_DOMAIN_ENABLED' as const,
|
||||
IS_EMAILING_DOMAIN_ENABLED: 'IS_EMAILING_DOMAIN_ENABLED' as const,
|
||||
IS_DASHBOARD_V2_ENABLED: 'IS_DASHBOARD_V2_ENABLED' as const,
|
||||
IS_ATTACHMENT_MIGRATED: 'IS_ATTACHMENT_MIGRATED' as const,
|
||||
IS_NOTE_TARGET_MIGRATED: 'IS_NOTE_TARGET_MIGRATED' as const,
|
||||
IS_TASK_TARGET_MIGRATED: 'IS_TASK_TARGET_MIGRATED' as const,
|
||||
IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED: 'IS_ROW_LEVEL_PERMISSION_PREDICATES_ENABLED' as const,
|
||||
IS_JUNCTION_RELATIONS_ENABLED: 'IS_JUNCTION_RELATIONS_ENABLED' as const,
|
||||
IS_COMMAND_MENU_ITEM_ENABLED: 'IS_COMMAND_MENU_ITEM_ENABLED' as const,
|
||||
IS_NAVIGATION_MENU_ITEM_ENABLED: 'IS_NAVIGATION_MENU_ITEM_ENABLED' as const,
|
||||
IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED: 'IS_DATE_TIME_WHOLE_DAY_FILTER_ENABLED' as const,
|
||||
IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED: 'IS_NAVIGATION_MENU_ITEM_EDITING_ENABLED' as const,
|
||||
IS_DRAFT_EMAIL_ENABLED: 'IS_DRAFT_EMAIL_ENABLED' as const,
|
||||
IS_USAGE_ANALYTICS_ENABLED: 'IS_USAGE_ANALYTICS_ENABLED' as const,
|
||||
@@ -9154,7 +9155,9 @@ export const enumFeatureFlagKey = {
|
||||
IS_DIRECT_GRAPHQL_EXECUTION_ENABLED: 'IS_DIRECT_GRAPHQL_EXECUTION_ENABLED' as const,
|
||||
IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED: 'IS_RECORD_PAGE_LAYOUT_GLOBAL_EDITION_ENABLED' as const,
|
||||
IS_CONNECTED_ACCOUNT_MIGRATED: 'IS_CONNECTED_ACCOUNT_MIGRATED' as const,
|
||||
IS_GRAPHQL_QUERY_TIMING_ENABLED: 'IS_GRAPHQL_QUERY_TIMING_ENABLED' as const
|
||||
IS_GRAPHQL_QUERY_TIMING_ENABLED: 'IS_GRAPHQL_QUERY_TIMING_ENABLED' as const,
|
||||
IS_RECORD_TABLE_WIDGET_ENABLED: 'IS_RECORD_TABLE_WIDGET_ENABLED' as const,
|
||||
IS_DATASOURCE_MIGRATED: 'IS_DATASOURCE_MIGRATED' as const
|
||||
}
|
||||
|
||||
export const enumConfigSource = {
|
||||
@@ -9424,6 +9427,7 @@ export const enumAllMetadataName = {
|
||||
navigationMenuItem: 'navigationMenuItem' as const,
|
||||
permissionFlag: 'permissionFlag' as const,
|
||||
objectPermission: 'objectPermission' as const,
|
||||
fieldPermission: 'fieldPermission' as const,
|
||||
frontComponent: 'frontComponent' as const,
|
||||
webhook: 'webhook' as const
|
||||
}
|
||||
@@ -9450,6 +9454,13 @@ export const enumEventLogTable = {
|
||||
USAGE_EVENT: 'USAGE_EVENT' as const
|
||||
}
|
||||
|
||||
export const enumUsageOperationType = {
|
||||
AI_CHAT_TOKEN: 'AI_CHAT_TOKEN' as const,
|
||||
AI_WORKFLOW_TOKEN: 'AI_WORKFLOW_TOKEN' as const,
|
||||
WORKFLOW_EXECUTION: 'WORKFLOW_EXECUTION' as const,
|
||||
CODE_EXECUTION: 'CODE_EXECUTION' as const
|
||||
}
|
||||
|
||||
export const enumAnalyticsType = {
|
||||
PAGEVIEW: 'PAGEVIEW' as const,
|
||||
TRACK: 'TRACK' as const
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
-12998
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@
|
||||
"description": "Twenty meeting recorder",
|
||||
"main": ".webpack/main",
|
||||
"scripts": {
|
||||
"start": "concurrently \"npm run start:server\" \"npm run start:electron\"",
|
||||
"start": "concurrently \"yarn start:server\" \"yarn start:electron\"",
|
||||
"start:electron": "electron-forge start",
|
||||
"package": "electron-forge package",
|
||||
"make": "electron-forge make",
|
||||
@@ -37,10 +37,8 @@
|
||||
"node-loader": "^2.1.0",
|
||||
"style-loader": "^3.3.4"
|
||||
},
|
||||
"overrides": {
|
||||
"@electron/packager": {
|
||||
"@electron/osx-sign": "github:recallai/osx-sign"
|
||||
}
|
||||
"resolutions": {
|
||||
"@electron/packager/@electron/osx-sign": "github:recallai/osx-sign"
|
||||
},
|
||||
"dependencies": {
|
||||
"@anthropic-ai/sdk": "^0.40.1",
|
||||
|
||||
@@ -16,3 +16,5 @@ STORAGE_TYPE=local
|
||||
# STORAGE_S3_REGION=eu-west3
|
||||
# STORAGE_S3_NAME=my-bucket
|
||||
# STORAGE_S3_ENDPOINT=
|
||||
# STORAGE_S3_ACCESS_KEY_ID=
|
||||
# STORAGE_S3_SECRET_ACCESS_KEY=
|
||||
|
||||
@@ -32,11 +32,11 @@ has_schema=$(PGPASSWORD=twenty psql -h localhost -U twenty -d default -tAc \
|
||||
|
||||
if [ "$has_schema" = "f" ]; then
|
||||
echo "Database appears to be empty, running initial setup..."
|
||||
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/scripts/setup-db.js
|
||||
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/database/scripts/setup-db.js
|
||||
fi
|
||||
|
||||
# Always run migrations (idempotent — skips already-applied ones)
|
||||
yarn database:migrate:prod
|
||||
yarn database:migrate:prod --force
|
||||
|
||||
yarn command:prod cache:flush
|
||||
yarn command:prod upgrade
|
||||
|
||||
@@ -17,6 +17,7 @@ COPY ./packages/twenty-ui/package.json /app/packages/twenty-ui/
|
||||
COPY ./packages/twenty-shared/package.json /app/packages/twenty-shared/
|
||||
COPY ./packages/twenty-front/package.json /app/packages/twenty-front/
|
||||
COPY ./packages/twenty-sdk/package.json /app/packages/twenty-sdk/
|
||||
COPY ./packages/twenty-client-sdk/package.json /app/packages/twenty-client-sdk/
|
||||
|
||||
RUN yarn && yarn cache clean && npx nx reset
|
||||
|
||||
@@ -27,6 +28,7 @@ COPY ./packages/twenty-emails /app/packages/twenty-emails
|
||||
COPY ./packages/twenty-shared /app/packages/twenty-shared
|
||||
COPY ./packages/twenty-ui /app/packages/twenty-ui
|
||||
COPY ./packages/twenty-sdk /app/packages/twenty-sdk
|
||||
COPY ./packages/twenty-client-sdk /app/packages/twenty-client-sdk
|
||||
COPY ./packages/twenty-server /app/packages/twenty-server
|
||||
|
||||
RUN npx nx run twenty-server:lingui:extract && \
|
||||
@@ -36,18 +38,12 @@ RUN npx nx run twenty-server:lingui:extract && \
|
||||
|
||||
RUN npx nx run twenty-server:build
|
||||
|
||||
# Bundle setup-db script into a standalone JS file so the final image
|
||||
# doesn't need tsx or the TypeScript source tree at runtime.
|
||||
RUN npx esbuild packages/twenty-server/scripts/setup-db.ts \
|
||||
--bundle --platform=node --outfile=packages/twenty-server/dist/scripts/setup-db.js \
|
||||
--external:typeorm --external:dotenv --external:pg
|
||||
|
||||
# Clean server build output (type declarations and compiled tests are not needed at runtime;
|
||||
# source maps are kept because twenty-infra extracts them from the image for Sentry uploads)
|
||||
RUN find /app/packages/twenty-server/dist -name '*.d.ts' -delete \
|
||||
&& rm -rf /app/packages/twenty-server/dist/packages/twenty-server/test
|
||||
|
||||
RUN yarn workspaces focus --production twenty-emails twenty-shared twenty-sdk twenty-server
|
||||
RUN yarn workspaces focus --production twenty-emails twenty-shared twenty-sdk twenty-client-sdk twenty-server
|
||||
|
||||
|
||||
FROM common-deps AS twenty-front-build
|
||||
@@ -58,6 +54,7 @@ COPY ./packages/twenty-front /app/packages/twenty-front
|
||||
COPY ./packages/twenty-ui /app/packages/twenty-ui
|
||||
COPY ./packages/twenty-shared /app/packages/twenty-shared
|
||||
COPY ./packages/twenty-sdk /app/packages/twenty-sdk
|
||||
COPY ./packages/twenty-client-sdk /app/packages/twenty-client-sdk
|
||||
RUN npx nx run twenty-front:lingui:extract && \
|
||||
npx nx run twenty-front:lingui:compile
|
||||
# To skip the memory-intensive frontend build, pre-build on the host:
|
||||
@@ -106,6 +103,8 @@ COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-shared/dist /a
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-emails/package.json /app/packages/twenty-emails/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-emails/dist /app/packages/twenty-emails/dist
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-sdk/package.json /app/packages/twenty-sdk/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-client-sdk/package.json /app/packages/twenty-client-sdk/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-client-sdk/dist /app/packages/twenty-client-sdk/dist
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-ui/package.json /app/packages/twenty-ui/
|
||||
COPY --chown=1000 --from=twenty-server-build /app/packages/twenty-front/package.json /app/packages/twenty-front/
|
||||
|
||||
@@ -180,6 +179,8 @@ COPY --from=twenty-server-build /app/packages/twenty-shared/dist /app/packages/t
|
||||
COPY --from=twenty-server-build /app/packages/twenty-emails/package.json /app/packages/twenty-emails/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-emails/dist /app/packages/twenty-emails/dist
|
||||
COPY --from=twenty-server-build /app/packages/twenty-sdk/package.json /app/packages/twenty-sdk/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-client-sdk/package.json /app/packages/twenty-client-sdk/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-client-sdk/dist /app/packages/twenty-client-sdk/dist
|
||||
COPY --from=twenty-server-build /app/packages/twenty-ui/package.json /app/packages/twenty-ui/
|
||||
COPY --from=twenty-server-build /app/packages/twenty-front/package.json /app/packages/twenty-front/
|
||||
|
||||
|
||||
@@ -13,8 +13,7 @@ setup_and_migrate_db() {
|
||||
has_schema=$(psql -tAc "SELECT EXISTS (SELECT 1 FROM information_schema.schemata WHERE schema_name = 'core')" ${PG_DATABASE_URL})
|
||||
if [ "$has_schema" = "f" ]; then
|
||||
echo "Database appears to be empty, running migrations."
|
||||
NODE_OPTIONS="--max-old-space-size=1500" node ./dist/scripts/setup-db.js
|
||||
yarn database:migrate:prod
|
||||
yarn database:init:prod
|
||||
fi
|
||||
|
||||
yarn command:prod cache:flush
|
||||
|
||||
@@ -289,6 +289,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Environment-only mode:** If you set `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, add these variables to your `.env` file instead.
|
||||
</Warning>
|
||||
|
||||
## S3 Storage
|
||||
|
||||
<Warning>
|
||||
By default, Twenty stores uploaded files on the local filesystem. For production deployments, use S3 or an S3-compatible service (MinIO, DigitalOcean Spaces, etc.) to ensure files persist across container restarts and scale across multiple server instances.
|
||||
</Warning>
|
||||
|
||||
Set `STORAGE_TYPE=S_3` and configure the `STORAGE_S3_*` variables through the admin panel or `.env`. See the [config-variables.ts reference](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) for the full list of S3 variables.
|
||||
|
||||
When using S3 with CORS-dependent features (e.g. in-browser file downloads), make sure your bucket allows your Twenty frontend origin in its CORS configuration.
|
||||
|
||||
## Logic Functions & Code Interpreter
|
||||
|
||||
Twenty supports logic functions for workflows and the code interpreter for AI data analysis. Both run user-provided code and require explicit configuration for security.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**وضع بيئي فقط:** إذا كنت قد ضبطت `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`، فأضف هذه المتغيرات إلى ملف `.env` الخاص بك بدلاً من ذلك.
|
||||
</Warning>
|
||||
|
||||
## تخزين S3
|
||||
|
||||
<Warning>
|
||||
افتراضياً، تقوم Twenty بتخزين الملفات المرفوعة على نظام الملفات المحلي. بالنسبة لعمليات النشر في بيئة الإنتاج، استخدم S3 أو خدمة متوافقة مع S3 (MinIO، DigitalOcean Spaces، إلخ) لضمان بقاء الملفات عبر إعادة تشغيل الحاويات وإتاحة التوسّع عبر مثيلات خوادم متعددة.
|
||||
</Warning>
|
||||
|
||||
عيّن `STORAGE_TYPE=S_3` وقم بتهيئة متغيرات `STORAGE_S3_*` من خلال لوحة الإدارة أو `.env`. راجع [مرجع config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) للاطلاع على القائمة الكاملة لمتغيرات S3.
|
||||
|
||||
عند استخدام S3 مع الميزات المعتمدة على CORS (مثل تنزيل الملفات داخل المتصفح)، تأكد من أن حاويتك تسمح بأصل واجهة Twenty الأمامية ضمن تهيئة CORS الخاصة بها.
|
||||
|
||||
## الوظائف المنطقية ومفسر الشيفرة
|
||||
|
||||
تدعم Twenty الوظائف المنطقية لعمليات سير العمل ومفسر الشيفرة لتحليل بيانات الذكاء الاصطناعي. كلاهما يقوم بتشغيل الشيفرة المقدمة من المستخدم ويتطلب تهيئة صريحة لأغراض الأمان.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Režim pouze s prostředím:** Pokud nastavíte `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, přidejte tyto proměnné do souboru `.env`
|
||||
</Warning>
|
||||
|
||||
## Úložiště S3
|
||||
|
||||
<Warning>
|
||||
Ve výchozím nastavení Twenty ukládá nahrané soubory do místního souborového systému. Pro produkční nasazení použijte S3 nebo službu kompatibilní se S3 (MinIO, DigitalOcean Spaces atd.). aby byly soubory zachovány při restartech kontejnerů a bylo možné škálovat napříč více instancemi serveru.
|
||||
</Warning>
|
||||
|
||||
Nastavte `STORAGE_TYPE=S_3` a nakonfigurujte proměnné `STORAGE_S3_*` prostřednictvím administračního panelu nebo `.env`. Viz [referenci config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) pro úplný seznam proměnných S3.
|
||||
|
||||
Při používání S3 s funkcemi závislými na CORS (např. stahování souborů v prohlížeči) se ujistěte, že váš bucket povoluje origin vašeho frontendu Twenty ve své konfiguraci CORS.
|
||||
|
||||
## Logické funkce a interpret kódu
|
||||
|
||||
Twenty podporuje logické funkce pro pracovní postupy a interpret kódu pro analýzu dat s využitím AI. Obě spouštějí kód poskytnutý uživatelem a z důvodu zabezpečení vyžadují explicitní konfiguraci.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Nur-Umgebungsmodus:** Wenn Sie `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false` setzen, fügen Sie diese Variablen stattdessen Ihrer `.env`-Datei hinzu.
|
||||
</Warning>
|
||||
|
||||
## S3-Speicher
|
||||
|
||||
<Warning>
|
||||
Standardmäßig speichert Twenty hochgeladene Dateien auf dem lokalen Dateisystem. Für Produktionsbereitstellungen verwenden Sie S3 oder einen S3-kompatiblen Dienst (MinIO, DigitalOcean Spaces usw.). um sicherzustellen, dass Dateien Container-Neustarts überdauern und über mehrere Serverinstanzen skaliert werden können.
|
||||
</Warning>
|
||||
|
||||
Setzen Sie `STORAGE_TYPE=S_3` und konfigurieren Sie die Variablen `STORAGE_S3_*` über das Admin-Panel oder `.env`. Siehe die [Referenz zu config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) für die vollständige Liste der S3-Variablen.
|
||||
|
||||
Wenn Sie S3 mit CORS-abhängigen Funktionen verwenden (z. B. Dateidownloads im Browser), stellen Sie sicher, dass Ihr Bucket in seiner CORS-Konfiguration die Origin Ihres Twenty-Frontends zulässt.
|
||||
|
||||
## Logikfunktionen & Code-Interpreter
|
||||
|
||||
Twenty unterstützt Logikfunktionen für Workflows und den Code-Interpreter für KI-Datenanalyse. Beide führen vom Benutzer bereitgestellten Code aus und erfordern aus Sicherheitsgründen eine explizite Konfiguration.
|
||||
|
||||
@@ -296,6 +296,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Modalità solo ambiente:** Se imposti `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, aggiungi queste variabili al tuo file `.env` invece.
|
||||
</Warning>
|
||||
|
||||
## Archiviazione S3
|
||||
|
||||
<Warning>
|
||||
Per impostazione predefinita, Twenty archivia i file caricati nel file system locale. Per le distribuzioni in produzione, usa S3 o un servizio compatibile con S3 (MinIO, DigitalOcean Spaces, ecc.). per garantire che i file persistano tra i riavvii dei container e per poter scalare su più istanze server.
|
||||
</Warning>
|
||||
|
||||
Imposta `STORAGE_TYPE=S_3` e configura le variabili `STORAGE_S3_*` tramite il pannello di amministrazione o `.env`. Consulta il [riferimento a config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) per l'elenco completo delle variabili S3.
|
||||
|
||||
Quando si usa S3 con funzionalità che dipendono da CORS (ad esempio i download di file nel browser), assicurati che il tuo bucket consenta l'origine del tuo frontend di Twenty nella sua configurazione CORS.
|
||||
|
||||
## Funzioni logiche & interprete del codice
|
||||
|
||||
Twenty supporta le funzioni logiche per i workflow e l'interprete del codice per l'analisi dei dati con IA. Entrambi eseguono codice fornito dall'utente e richiedono una configurazione esplicita per motivi di sicurezza.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Mod doar pentru mediu:** Dacă setați `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, adăugați aceste variabile în fișierul dvs. `.env` în schimb.
|
||||
</Warning>
|
||||
|
||||
## Stocare S3
|
||||
|
||||
<Warning>
|
||||
În mod implicit, Twenty stochează fișierele încărcate în sistemul de fișiere local. Pentru implementări în producție, utilizați S3 sau un serviciu compatibil cu S3 (MinIO, DigitalOcean Spaces etc.). pentru a vă asigura că fișierele persistă între repornirile containerelor și se scalează pe mai multe instanțe de server.
|
||||
</Warning>
|
||||
|
||||
Setați `STORAGE_TYPE=S_3` și configurați variabilele `STORAGE_S3_*` prin panoul de administrare sau `.env`. Consultați [referința config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) pentru lista completă a variabilelor S3.
|
||||
|
||||
Când utilizați S3 cu funcționalități dependente de CORS (de ex., descărcări de fișiere în browser), asigurați-vă că bucketul permite originea frontend-ului Twenty în configurația sa CORS.
|
||||
|
||||
## Funcții logice și interpretor de cod
|
||||
|
||||
Twenty acceptă funcții logice pentru fluxuri de lucru și interpretorul de cod pentru analiza datelor cu AI. Ambele rulează cod furnizat de utilizator și necesită o configurare explicită din motive de securitate.
|
||||
|
||||
@@ -296,6 +296,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Режим только для среды:** если вы установили `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, добавьте эти переменные в свой `.env` файл вместо этого.
|
||||
</Warning>
|
||||
|
||||
## S3 Storage
|
||||
|
||||
<Warning>
|
||||
By default, Twenty stores uploaded files on the local filesystem. Для продакшн-развертываний используйте S3 или совместимый с S3 сервис (MinIO, DigitalOcean Spaces и т. д.). чтобы файлы сохранялись при перезапусках контейнеров и были доступны на нескольких экземплярах сервера при масштабировании.
|
||||
</Warning>
|
||||
|
||||
Установите `STORAGE_TYPE=S_3` и настройте переменные `STORAGE_S3_*` через админ-панель или `.env`. См. [справочник config-variables.ts](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) для полного списка переменных S3.
|
||||
|
||||
При использовании S3 с функциями, зависящими от CORS (например, загрузки файлов в браузере), убедитесь, что в конфигурации CORS вашего бакета разрешен origin фронтенда Twenty.
|
||||
|
||||
## Логические функции и интерпретатор кода
|
||||
|
||||
Twenty поддерживает логические функции для рабочих процессов и интерпретатор кода для анализа данных ИИ. Оба запускают предоставленный пользователем код и требуют явной настройки в целях безопасности.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Çevre-yalnızca modu:** `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false` ayarlarsanız, bu değişkenleri `.env` dosyanıza ekleyin.
|
||||
</Warning>
|
||||
|
||||
## S3 Depolama
|
||||
|
||||
<Warning>
|
||||
Varsayılan olarak, Twenty yüklenen dosyaları yerel dosya sisteminde depolar. Üretim dağıtımları için S3 veya S3 uyumlu bir hizmet (MinIO, DigitalOcean Spaces vb.) kullanın. dosyaların kapsayıcı yeniden başlatmaları arasında kalıcı olmasını ve birden çok sunucu örneği arasında ölçeklenmesini sağlamak için.
|
||||
</Warning>
|
||||
|
||||
`STORAGE_TYPE=S_3` değerini ayarlayın ve `STORAGE_S3_*` değişkenlerini yönetici paneli veya `.env` üzerinden yapılandırın. S3 değişkenlerinin tam listesi için [config-variables.ts referansına](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts) bakın.
|
||||
|
||||
S3'ü CORS'a bağlı özelliklerle kullanırken (örn. tarayıcı içi dosya indirmeleri), bucket'ınızın CORS yapılandırmasında Twenty frontend origin'inize izin verdiğinden emin olun.
|
||||
|
||||
## Mantıksal İşlevler ve Kod Yorumlayıcısı
|
||||
|
||||
Twenty, iş akışları için mantıksal işlevleri ve yapay zekâ veri analizi için kod yorumlayıcısını destekler. Her ikisi de kullanıcı tarafından sağlanan kodu çalıştırır ve güvenlik için açık bir yapılandırma gerektirir.
|
||||
|
||||
@@ -297,6 +297,16 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**仅限环境模式:** 如果你设置 `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`,请将这些变量添加到 `.env` 文件中。
|
||||
</Warning>
|
||||
|
||||
## S3 存储
|
||||
|
||||
<Warning>
|
||||
默认情况下,Twenty 将上传的文件存储在本地文件系统上。 对于生产环境部署,请使用 S3 或兼容 S3 的服务(MinIO、DigitalOcean Spaces 等)。 以确保文件在容器重启后仍然存在,并可在多个服务器实例间扩展。
|
||||
</Warning>
|
||||
|
||||
设置 `STORAGE_TYPE=S_3`,并通过管理面板或 `.env` 配置 `STORAGE_S3_*` 变量。 有关 S3 变量的完整列表,请参见[config-variables.ts 参考](https://github.com/twentyhq/twenty/blob/main/packages/twenty-server/src/engine/core-modules/twenty-config/config-variables.ts)。
|
||||
|
||||
在将 S3 与依赖 CORS 的功能(例如浏览器内文件下载)一起使用时,请确保你的存储桶在其 CORS 配置中允许你的 Twenty 前端来源。
|
||||
|
||||
## 逻辑函数与代码解释器
|
||||
|
||||
Twenty 支持用于工作流的逻辑函数,以及用于 AI 数据分析的代码解释器。 二者都会运行用户提供的代码,并要求进行显式配置以确保安全。
|
||||
|
||||
@@ -91,7 +91,7 @@ msgstr "Einladung akzeptieren"
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
msgid "Confirm your new email address"
|
||||
msgstr ""
|
||||
msgstr "Bestätige deine neue E-Mail-Adresse"
|
||||
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
@@ -101,7 +101,7 @@ msgstr "Bestätigen Sie Ihre E-Mail-Adresse"
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
msgid "Confirm new email"
|
||||
msgstr ""
|
||||
msgstr "Neue E-Mail-Adresse bestätigen"
|
||||
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
|
||||
@@ -1 +1 @@
|
||||
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"Suspended Workspace\":[\"Ausgesetzter Arbeitsbereich\"],\"Dear {userName},\":[\"Sehr geehrte/r \",[\"userName\"],\",\"],\"Hello,\":[\"Hallo,\"],\"It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days.\":[\"Es scheint, dass Ihr Workspace <0>\",[\"workspaceDisplayName\"],\"</0> seit \",[\"daysSinceInactive\"],\" Tagen gesperrt ist.\"],\"The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted.\":[\"Der Workspace wird in \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\" deaktiviert, und alle Daten werden gelöscht.\"],\"If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}.\":[\"Wenn Sie Twenty weiterhin nutzen möchten, aktualisieren Sie bitte Ihr Abonnement innerhalb der nächsten \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\".\"],\"Update your subscription\":[\"Aktualisieren Sie Ihr Abonnement\"],\"Validate domain\":[\"Domain validieren\"],\"{senderName} (<0>{senderEmail}</0>): Please validate this domain to allow users with <1>@{domain}</1> email addresses to join your workspace without requiring an invitation.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>): Bitte validieren Sie diese Domain, damit Benutzer mit <1>@\",[\"domain\"],\"</1> E-Mail-Adressen Ihrem Arbeitsbereich beitreten können, ohne eine Einladung zu benötigen.\"],\"Test email\":[\"Test E-Mail\"],\"Join your team on Twenty\":[\"Treten Sie Ihrem Team auf Twenty bei\"],\"{senderName} (<0>{senderEmail}</0>) has invited you to join a workspace called <1>{workspaceName}</1>.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>) hat Sie eingeladen, einem Arbeitsbereich namens <1>\",[\"workspaceName\"],\"</1> beizutreten.\"],\"Accept invite\":[\"Einladung akzeptieren\"],\"Confirm your new email address\":[\"Confirm your new email address\"],\"Confirm your email address\":[\"Bestätigen Sie Ihre E-Mail-Adresse\"],\"Confirm new email\":[\"Confirm new email\"],\"Verify Email\":[\"E-Mail verifizieren\"],\"Password updated\":[\"Passwort wurde aktualisiert\"],\"This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.\":[\"Dies ist eine Bestätigung, dass das Passwort für Ihr Konto (\",[\"email\"],\") am \",[\"formattedDate\"],\" erfolgreich geändert wurde.\"],\"If you did not initiate this change, please contact your workspace owner immediately.\":[\"Wenn Sie diese Änderung nicht veranlasst haben, kontaktieren Sie bitte umgehend den Eigentümer Ihres Workspaces.\"],\"Connect to Twenty\":[\"Mit Twenty verbinden\"],\"Reset your password 🗝\":[\"Setzen Sie Ihr Passwort zurück 🗝\"],\"Set your password 🗝\":[\"Setze dein Passwort 🗝\"],\"Reset\":[\"Zurücksetzen\"],\"Set\":[\"Setzen\"],\"This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:\":[\"Dieser Link ist nur für die nächsten \",[\"duration\"],\" gültig. Wenn der Link nicht funktioniert, können Sie den Anmeldebestätigungslink direkt verwenden:\"],\"Deleted Workspace\":[\"Gelöschter Arbeitsbereich\"],\"Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {daysSinceInactive} days ago.\":[\"Ihr Workspace <0>\",[\"workspaceDisplayName\"],\"</0> wurde gelöscht, da Ihr Abonnement vor \",[\"daysSinceInactive\"],\" Tagen abgelaufen ist.\"],\"All data in this workspace has been permanently deleted.\":[\"Alle Daten in diesem Workspace wurden dauerhaft gelöscht.\"],\"If you wish to use Twenty again, you can create a new workspace.\":[\"Wenn Sie Twenty erneut nutzen möchten, können Sie einen neuen Workspace erstellen.\"],\"Create a new workspace\":[\"Erstellen Sie einen neuen Arbeitsbereich\"],\"What is Twenty?\":[\"Was ist Twenty?\"],\"It's a CRM, a software to help businesses manage their customer data and relationships efficiently.\":[\"Es ist ein CRM, eine Software, die Unternehmen hilft, ihre Kundendaten und -beziehungen effizient zu verwalten.\"],\"Website\":[\"Website\"],\"Visit Twenty's website\":[\"Besuchen Sie die Twenty-Website\"],\"Github\":[\"GitHub\"],\"Visit Twenty's GitHub repository\":[\"Besuchen Sie das GitHub-Repository von Twenty\"],\"User guide\":[\"Benutzerhandbuch\"],\"Read Twenty's user guide\":[\"Lesen Sie das Benutzerhandbuch von Twenty\"],\"Developers\":[\"Entwickler\"],\"Visit Twenty's developer documentation\":[\"Besuchen Sie die Entwicklerdokumentation von Twenty\"],\"Twenty.com, Public Benefit Corporation\":[\"Twenty.com, Gemeinnützige Aktiengesellschaft\"],\"San Francisco / Paris\":[\"San Francisco / Paris\"]}")as Messages;
|
||||
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"Suspended Workspace\":[\"Ausgesetzter Arbeitsbereich\"],\"Dear {userName},\":[\"Sehr geehrte/r \",[\"userName\"],\",\"],\"Hello,\":[\"Hallo,\"],\"It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days.\":[\"Es scheint, dass Ihr Workspace <0>\",[\"workspaceDisplayName\"],\"</0> seit \",[\"daysSinceInactive\"],\" Tagen gesperrt ist.\"],\"The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted.\":[\"Der Workspace wird in \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\" deaktiviert, und alle Daten werden gelöscht.\"],\"If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}.\":[\"Wenn Sie Twenty weiterhin nutzen möchten, aktualisieren Sie bitte Ihr Abonnement innerhalb der nächsten \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\".\"],\"Update your subscription\":[\"Aktualisieren Sie Ihr Abonnement\"],\"Validate domain\":[\"Domain validieren\"],\"{senderName} (<0>{senderEmail}</0>): Please validate this domain to allow users with <1>@{domain}</1> email addresses to join your workspace without requiring an invitation.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>): Bitte validieren Sie diese Domain, damit Benutzer mit <1>@\",[\"domain\"],\"</1> E-Mail-Adressen Ihrem Arbeitsbereich beitreten können, ohne eine Einladung zu benötigen.\"],\"Test email\":[\"Test E-Mail\"],\"Join your team on Twenty\":[\"Treten Sie Ihrem Team auf Twenty bei\"],\"{senderName} (<0>{senderEmail}</0>) has invited you to join a workspace called <1>{workspaceName}</1>.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>) hat Sie eingeladen, einem Arbeitsbereich namens <1>\",[\"workspaceName\"],\"</1> beizutreten.\"],\"Accept invite\":[\"Einladung akzeptieren\"],\"Confirm your new email address\":[\"Bestätige deine neue E-Mail-Adresse\"],\"Confirm your email address\":[\"Bestätigen Sie Ihre E-Mail-Adresse\"],\"Confirm new email\":[\"Neue E-Mail-Adresse bestätigen\"],\"Verify Email\":[\"E-Mail verifizieren\"],\"Password updated\":[\"Passwort wurde aktualisiert\"],\"This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.\":[\"Dies ist eine Bestätigung, dass das Passwort für Ihr Konto (\",[\"email\"],\") am \",[\"formattedDate\"],\" erfolgreich geändert wurde.\"],\"If you did not initiate this change, please contact your workspace owner immediately.\":[\"Wenn Sie diese Änderung nicht veranlasst haben, kontaktieren Sie bitte umgehend den Eigentümer Ihres Workspaces.\"],\"Connect to Twenty\":[\"Mit Twenty verbinden\"],\"Reset your password 🗝\":[\"Setzen Sie Ihr Passwort zurück 🗝\"],\"Set your password 🗝\":[\"Setze dein Passwort 🗝\"],\"Reset\":[\"Zurücksetzen\"],\"Set\":[\"Setzen\"],\"This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:\":[\"Dieser Link ist nur für die nächsten \",[\"duration\"],\" gültig. Wenn der Link nicht funktioniert, können Sie den Anmeldebestätigungslink direkt verwenden:\"],\"Deleted Workspace\":[\"Gelöschter Arbeitsbereich\"],\"Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {daysSinceInactive} days ago.\":[\"Ihr Workspace <0>\",[\"workspaceDisplayName\"],\"</0> wurde gelöscht, da Ihr Abonnement vor \",[\"daysSinceInactive\"],\" Tagen abgelaufen ist.\"],\"All data in this workspace has been permanently deleted.\":[\"Alle Daten in diesem Workspace wurden dauerhaft gelöscht.\"],\"If you wish to use Twenty again, you can create a new workspace.\":[\"Wenn Sie Twenty erneut nutzen möchten, können Sie einen neuen Workspace erstellen.\"],\"Create a new workspace\":[\"Erstellen Sie einen neuen Arbeitsbereich\"],\"What is Twenty?\":[\"Was ist Twenty?\"],\"It's a CRM, a software to help businesses manage their customer data and relationships efficiently.\":[\"Es ist ein CRM, eine Software, die Unternehmen hilft, ihre Kundendaten und -beziehungen effizient zu verwalten.\"],\"Website\":[\"Website\"],\"Visit Twenty's website\":[\"Besuchen Sie die Twenty-Website\"],\"Github\":[\"GitHub\"],\"Visit Twenty's GitHub repository\":[\"Besuchen Sie das GitHub-Repository von Twenty\"],\"User guide\":[\"Benutzerhandbuch\"],\"Read Twenty's user guide\":[\"Lesen Sie das Benutzerhandbuch von Twenty\"],\"Developers\":[\"Entwickler\"],\"Visit Twenty's developer documentation\":[\"Besuchen Sie die Entwicklerdokumentation von Twenty\"],\"Twenty.com, Public Benefit Corporation\":[\"Twenty.com, Gemeinnützige Aktiengesellschaft\"],\"San Francisco / Paris\":[\"San Francisco / Paris\"]}")as Messages;
|
||||
@@ -1 +1 @@
|
||||
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"Suspended Workspace\":[\"Felfüggesztett munkaterület\"],\"Dear {userName},\":[\"Kedves \",[\"userName\"],\",\"],\"Hello,\":[\"Üdvözlöm,\"],\"It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days.\":[\"Úgy tűnik, hogy a munkaterülete <0>\",[\"workspaceDisplayName\"],\"</0> felfüggesztésre került \",[\"daysSinceInactive\"],\" napja.\"],\"The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted.\":[\"A munkaterület \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\" múlva lesz deaktiválva, és minden adat törlésre kerül.\"],\"If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}.\":[\"Amennyiben szeretné folytatni a Twenty használatát, kérjük frissítse előfizetését a következő \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\" időszakban.\"],\"Update your subscription\":[\"Előfizetés frissítése\"],\"Validate domain\":[\"Domain érvényesítése\"],\"{senderName} (<0>{senderEmail}</0>): Please validate this domain to allow users with <1>@{domain}</1> email addresses to join your workspace without requiring an invitation.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>): Kérjük, érvényesítse ezt a domaint annak érdekében, hogy az <1>@\",[\"domain\"],\"</1> e-mail címmel rendelkező felhasználók meghívó nélkül csatlakozhassanak a munkaterületéhez.\"],\"Test email\":[\"Teszt e-mail\"],\"Join your team on Twenty\":[\"Csatlakozzon a csapatához a Twentyn\"],\"{senderName} (<0>{senderEmail}</0>) has invited you to join a workspace called <1>{workspaceName}</1>.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>) meghívta önt, hogy csatlakozzon egy <1>\",[\"workspaceName\"],\"</1> nevű munkaterülethez.\"],\"Accept invite\":[\"Meghívó elfogadása\"],\"Confirm your new email address\":[\"Confirm your new email address\"],\"Confirm your email address\":[\"Erősítse meg email címét\"],\"Confirm new email\":[\"Confirm new email\"],\"Verify Email\":[\"Email ellenőrzése\"],\"Password updated\":[\"Jelszó frissítve\"],\"This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.\":[\"Ez egy megerősítés arról, hogy fiókja jelszavát (\",[\"email\"],\") sikeresen megváltoztatták \",[\"formattedDate\"],\" napján.\"],\"If you did not initiate this change, please contact your workspace owner immediately.\":[\"Amennyiben Ön nem kezdeményezte ezt a változtatást, kérjük azonnal lépjen kapcsolatba a munkaterület tulajdonosával.\"],\"Connect to Twenty\":[\"Csatlakozás a Twentyhez\"],\"Reset your password 🗝\":[\"Jelszó visszaállítása 🗝\"],\"Set your password 🗝\":[\"Adja meg a jelszavát 🗝\"],\"Reset\":[\"Visszaállítás\"],\"Set\":[\"Beállítás\"],\"This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:\":[\"Ez a hivatkozás csak a következő \",[\"duration\"],\" ideig érvényes. Ha a hivatkozás nem működik, használhatja közvetlenül a belépés ellenőrző hivatkozását:\"],\"Deleted Workspace\":[\"Törölt munkaterület\"],\"Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {daysSinceInactive} days ago.\":[\"Munkaterülete <0>\",[\"workspaceDisplayName\"],\"</0> törlésre került, mivel előfizetése \",[\"daysSinceInactive\"],\" nappal ezelőtt lejárt.\"],\"All data in this workspace has been permanently deleted.\":[\"A munkaterület minden adata végérvényesen törlésre került.\"],\"If you wish to use Twenty again, you can create a new workspace.\":[\"Ha újra szeretné használni a Twenty-t, létrehozhat egy új munkaterületet.\"],\"Create a new workspace\":[\"Hozzon létre új munkaterületet\"],\"What is Twenty?\":[\"Mi az a Twenty?\"],\"It's a CRM, a software to help businesses manage their customer data and relationships efficiently.\":[\"Ez egy CRM, egy szoftver, amely segíti a vállalkozásokat az ügyféladataik és kapcsolataik hatékony kezelésében.\"],\"Website\":[\"Weboldal\"],\"Visit Twenty's website\":[\"Látogasson el a Twenty weboldalára\"],\"Github\":[\"Github\"],\"Visit Twenty's GitHub repository\":[\"Látogasson el a Twenty GitHub tárházához\"],\"User guide\":[\"Felhasználói útmutató\"],\"Read Twenty's user guide\":[\"Olvassa el a Twenty felhasználói útmutatóját\"],\"Developers\":[\"Fejlesztők\"],\"Visit Twenty's developer documentation\":[\"Látogasson el a Twenty fejlesztői dokumentációjához\"],\"Twenty.com, Public Benefit Corporation\":[\"Twenty.com, Közhasznú Vállalat\"],\"San Francisco / Paris\":[\"San Francisco / Párizs\"]}")as Messages;
|
||||
/*eslint-disable*/import type{Messages}from"@lingui/core";export const messages=JSON.parse("{\"Suspended Workspace\":[\"Felfüggesztett munkaterület\"],\"Dear {userName},\":[\"Kedves \",[\"userName\"],\",\"],\"Hello,\":[\"Üdvözlöm,\"],\"It appears that your workspace <0>{workspaceDisplayName}</0> has been suspended for {daysSinceInactive} days.\":[\"Úgy tűnik, hogy a munkaterülete <0>\",[\"workspaceDisplayName\"],\"</0> felfüggesztésre került \",[\"daysSinceInactive\"],\" napja.\"],\"The workspace will be deactivated in {remainingDays} {dayOrDays}, and all its data will be deleted.\":[\"A munkaterület \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\" múlva lesz deaktiválva, és minden adat törlésre kerül.\"],\"If you wish to continue using Twenty, please update your subscription within the next {remainingDays} {dayOrDays}.\":[\"Amennyiben szeretné folytatni a Twenty használatát, kérjük frissítse előfizetését a következő \",[\"remainingDays\"],\" \",[\"dayOrDays\"],\" időszakban.\"],\"Update your subscription\":[\"Előfizetés frissítése\"],\"Validate domain\":[\"Domain érvényesítése\"],\"{senderName} (<0>{senderEmail}</0>): Please validate this domain to allow users with <1>@{domain}</1> email addresses to join your workspace without requiring an invitation.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>): Kérjük, érvényesítse ezt a domaint annak érdekében, hogy az <1>@\",[\"domain\"],\"</1> e-mail címmel rendelkező felhasználók meghívó nélkül csatlakozhassanak a munkaterületéhez.\"],\"Test email\":[\"Teszt e-mail\"],\"Join your team on Twenty\":[\"Csatlakozzon a csapatához a Twentyn\"],\"{senderName} (<0>{senderEmail}</0>) has invited you to join a workspace called <1>{workspaceName}</1>.\":[[\"senderName\"],\" (<0>\",[\"senderEmail\"],\"</0>) meghívta önt, hogy csatlakozzon egy <1>\",[\"workspaceName\"],\"</1> nevű munkaterülethez.\"],\"Accept invite\":[\"Meghívó elfogadása\"],\"Confirm your new email address\":[\"Erősítsd meg az új e-mail címed\"],\"Confirm your email address\":[\"Erősítse meg email címét\"],\"Confirm new email\":[\"Új e-mail megerősítése\"],\"Verify Email\":[\"Email ellenőrzése\"],\"Password updated\":[\"Jelszó frissítve\"],\"This is a confirmation that password for your account ({email}) was successfully changed on {formattedDate}.\":[\"Ez egy megerősítés arról, hogy fiókja jelszavát (\",[\"email\"],\") sikeresen megváltoztatták \",[\"formattedDate\"],\" napján.\"],\"If you did not initiate this change, please contact your workspace owner immediately.\":[\"Amennyiben Ön nem kezdeményezte ezt a változtatást, kérjük azonnal lépjen kapcsolatba a munkaterület tulajdonosával.\"],\"Connect to Twenty\":[\"Csatlakozás a Twentyhez\"],\"Reset your password 🗝\":[\"Jelszó visszaállítása 🗝\"],\"Set your password 🗝\":[\"Adja meg a jelszavát 🗝\"],\"Reset\":[\"Visszaállítás\"],\"Set\":[\"Beállítás\"],\"This link is only valid for the next {duration}. If the link does not work, you can use the login verification link directly:\":[\"Ez a hivatkozás csak a következő \",[\"duration\"],\" ideig érvényes. Ha a hivatkozás nem működik, használhatja közvetlenül a belépés ellenőrző hivatkozását:\"],\"Deleted Workspace\":[\"Törölt munkaterület\"],\"Your workspace <0>{workspaceDisplayName}</0> has been deleted as your subscription expired {daysSinceInactive} days ago.\":[\"Munkaterülete <0>\",[\"workspaceDisplayName\"],\"</0> törlésre került, mivel előfizetése \",[\"daysSinceInactive\"],\" nappal ezelőtt lejárt.\"],\"All data in this workspace has been permanently deleted.\":[\"A munkaterület minden adata végérvényesen törlésre került.\"],\"If you wish to use Twenty again, you can create a new workspace.\":[\"Ha újra szeretné használni a Twenty-t, létrehozhat egy új munkaterületet.\"],\"Create a new workspace\":[\"Hozzon létre új munkaterületet\"],\"What is Twenty?\":[\"Mi az a Twenty?\"],\"It's a CRM, a software to help businesses manage their customer data and relationships efficiently.\":[\"Ez egy CRM, egy szoftver, amely segíti a vállalkozásokat az ügyféladataik és kapcsolataik hatékony kezelésében.\"],\"Website\":[\"Weboldal\"],\"Visit Twenty's website\":[\"Látogasson el a Twenty weboldalára\"],\"Github\":[\"Github\"],\"Visit Twenty's GitHub repository\":[\"Látogasson el a Twenty GitHub tárházához\"],\"User guide\":[\"Felhasználói útmutató\"],\"Read Twenty's user guide\":[\"Olvassa el a Twenty felhasználói útmutatóját\"],\"Developers\":[\"Fejlesztők\"],\"Visit Twenty's developer documentation\":[\"Látogasson el a Twenty fejlesztői dokumentációjához\"],\"Twenty.com, Public Benefit Corporation\":[\"Twenty.com, Közhasznú Vállalat\"],\"San Francisco / Paris\":[\"San Francisco / Párizs\"]}")as Messages;
|
||||
@@ -91,7 +91,7 @@ msgstr "Meghívó elfogadása"
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
msgid "Confirm your new email address"
|
||||
msgstr ""
|
||||
msgstr "Erősítsd meg az új e-mail címed"
|
||||
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
@@ -101,7 +101,7 @@ msgstr "Erősítse meg email címét"
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
msgid "Confirm new email"
|
||||
msgstr ""
|
||||
msgstr "Új e-mail megerősítése"
|
||||
|
||||
#. js-lingui-explicit-id
|
||||
#: src/emails/send-email-verification-link.email.tsx
|
||||
|
||||
@@ -61,7 +61,7 @@ const jestConfig = {
|
||||
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
||||
coverageThreshold: {
|
||||
global: {
|
||||
statements: 48.5,
|
||||
statements: 48.4,
|
||||
lines: 47.0,
|
||||
functions: 39.5,
|
||||
},
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 91 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 93 KiB |
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -149,19 +149,16 @@ msgid "{0, plural, one {You do not have permission to access the {fieldsList} fi
|
||||
msgstr "{0, plural, one {You do not have permission to access the {fieldsList} field} other {You do not have permission to access the {fieldsList} fields}}"
|
||||
|
||||
#. js-lingui-id: dNIJYp
|
||||
#. placeholder {0}: formatNumber(totalCredits)
|
||||
#. placeholder {0}: formatNumber(datum.value)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/UsagePieChart.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "{0} credits"
|
||||
msgstr "{0} credits"
|
||||
|
||||
#. js-lingui-id: m8fdzW
|
||||
#. placeholder {0}: formatNumber(totalCredits)
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
msgid "{0} credits used"
|
||||
msgstr "{0} credits used"
|
||||
msgid "{0} used"
|
||||
msgstr "{0} used"
|
||||
|
||||
#. js-lingui-id: qdQhzv
|
||||
#: src/modules/views/advanced-filter-chip/components/AdvancedFilterChip.tsx
|
||||
@@ -501,10 +498,10 @@ msgstr "1. Type"
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr "10,000 workflow node executions"
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgstr "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr "12h"
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -537,10 +534,10 @@ msgstr "20,000 workflow node executions"
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr "200 OK - {duration}ms"
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgstr "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr "24h"
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
@@ -765,6 +762,7 @@ msgstr "Actions users can perform on this object"
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/settings/components/SettingsEnterpriseFeatureGateCard.tsx
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
@@ -1323,6 +1321,7 @@ msgstr "Aggregate Chart"
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
@@ -1341,6 +1340,16 @@ msgstr "AI"
|
||||
msgid "AI Chat"
|
||||
msgstr "AI Chat"
|
||||
|
||||
#. js-lingui-id: E/lGXl
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "AI consumption across all workspaces."
|
||||
msgstr "AI consumption across all workspaces."
|
||||
|
||||
#. js-lingui-id: kkfXGh
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI consumption over time."
|
||||
msgstr "AI consumption over time."
|
||||
|
||||
#. js-lingui-id: kNfr85
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
@@ -1363,6 +1372,61 @@ msgstr "AI request prep"
|
||||
msgid "AI Response Schema"
|
||||
msgstr "AI Response Schema"
|
||||
|
||||
#. js-lingui-id: tzhisR
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage"
|
||||
msgstr "AI Usage"
|
||||
|
||||
#. js-lingui-id: Ad11E9
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "AI usage analytics across workspaces is available with an Enterprise key."
|
||||
msgstr "AI usage analytics across workspaces is available with an Enterprise key."
|
||||
|
||||
#. js-lingui-id: zkptxb
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI usage analytics is available with an Enterprise key."
|
||||
msgstr "AI usage analytics is available with an Enterprise key."
|
||||
|
||||
#. js-lingui-id: U2F/HK
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI usage analytics requires ClickHouse. Contact your administrator."
|
||||
msgstr "AI usage analytics requires ClickHouse. Contact your administrator."
|
||||
|
||||
#. js-lingui-id: SknniY
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage by Model"
|
||||
msgstr "AI Usage by Model"
|
||||
|
||||
#. js-lingui-id: ehjYr9
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage by Type"
|
||||
msgstr "AI Usage by Type"
|
||||
|
||||
#. js-lingui-id: X2afmM
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage by User"
|
||||
msgstr "AI Usage by User"
|
||||
|
||||
#. js-lingui-id: jyqPfh
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "AI Usage by Workspace"
|
||||
msgstr "AI Usage by Workspace"
|
||||
|
||||
#. js-lingui-id: KLyZ6L
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "AI User Usage"
|
||||
msgstr "AI User Usage"
|
||||
|
||||
#. js-lingui-id: TLbVxH
|
||||
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
|
||||
msgid "AI Workflow"
|
||||
msgstr "AI Workflow"
|
||||
|
||||
#. js-lingui-id: BAiyFV
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "AKIA..."
|
||||
@@ -1451,6 +1515,11 @@ msgstr "All Members"
|
||||
msgid "All Metadata"
|
||||
msgstr "All Metadata"
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr "All objects"
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1741,6 +1810,11 @@ msgstr "API Key copied to clipboard"
|
||||
msgid "API key is required"
|
||||
msgstr "API key is required"
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr "API key name cannot be empty"
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1806,10 +1880,10 @@ msgstr "APIs"
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr "APIs & Webhooks"
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgstr "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr "Apostrophe and dot"
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
@@ -2357,6 +2431,11 @@ msgstr "Because this workflow is not using a manual trigger, the form will not o
|
||||
msgid "Before"
|
||||
msgstr "Before"
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr "Best"
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -2378,6 +2457,8 @@ msgid "between the {startOrdinal} and {endOrdinal} of the month"
|
||||
msgstr "between the {startOrdinal} and {endOrdinal} of the month"
|
||||
|
||||
#. js-lingui-id: R+w/Va
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/pages/settings/SettingsUsage.tsx
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -2440,6 +2521,12 @@ msgstr "Boolean"
|
||||
msgid "Both"
|
||||
msgstr "Both"
|
||||
|
||||
#. js-lingui-id: 1hGdwj
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "Breakdown across AI models."
|
||||
msgstr "Breakdown across AI models."
|
||||
|
||||
#. js-lingui-id: qDsMss
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
|
||||
msgid "Brief explanation of this output field"
|
||||
@@ -2925,6 +3012,7 @@ msgid "Clear the field or \"X\" to revert to environment/default value."
|
||||
msgstr "Clear the field or \"X\" to revert to environment/default value."
|
||||
|
||||
#. js-lingui-id: Gt8ndY
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "Click a user to see their daily breakdown."
|
||||
msgstr "Click a user to see their daily breakdown."
|
||||
@@ -2966,6 +3054,8 @@ msgstr "ClickHouse is required for audit logs. Contact your administrator."
|
||||
|
||||
#. js-lingui-id: CTdw8/
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "ClickHouse Not Configured"
|
||||
msgstr "ClickHouse Not Configured"
|
||||
|
||||
@@ -3008,6 +3098,7 @@ msgstr "Close banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Close side panel"
|
||||
|
||||
@@ -3104,10 +3195,10 @@ msgstr "command menu item"
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr "Commands copied to clipboard"
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgstr "Commas and dot - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr "Commas and dot"
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
@@ -3213,6 +3304,11 @@ msgstr "Configure default AI models and availability"
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configure fallback login methods for users with SSO bypass permissions"
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr "Configure how this object appears in search results"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3377,6 +3473,7 @@ msgstr "Content"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -3868,6 +3965,7 @@ msgstr "Creating your workspace"
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr "Credentials"
|
||||
|
||||
@@ -3896,16 +3994,9 @@ msgstr "Credit Usage"
|
||||
msgid "Credit usage breakdown for your workspace."
|
||||
msgstr "Credit usage breakdown for your workspace."
|
||||
|
||||
#. js-lingui-id: UQ4Hjl
|
||||
#: src/modules/ai/components/internal/AIChatContextUsageButton.tsx
|
||||
#: src/modules/ai/components/internal/AIChatContextUsageButton.tsx
|
||||
msgid "credits"
|
||||
msgstr "credits"
|
||||
|
||||
#. js-lingui-id: lDIOek
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "Credits"
|
||||
msgstr "Credits"
|
||||
|
||||
@@ -4096,6 +4187,12 @@ msgstr "Cyan"
|
||||
msgid "Czech"
|
||||
msgstr "Czech"
|
||||
|
||||
#. js-lingui-id: ShUrwO
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "Daily AI Usage"
|
||||
msgstr "Daily AI Usage"
|
||||
|
||||
#. js-lingui-id: KXQkvT
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
@@ -4209,6 +4306,7 @@ msgstr "Data Residency"
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr "Data type"
|
||||
|
||||
@@ -4340,7 +4438,7 @@ msgstr "Deactivate Workflow"
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4358,6 +4456,11 @@ msgstr "Debug Info"
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr "Decide which Sub-address fields you want to display"
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr "default"
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4926,10 +5029,10 @@ msgstr "Don't create contacts from/to Gmail, Outlook emails"
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr "Don't sync emails from team@ support@ noreply@..."
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgstr "Dots and comma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr "Dots and comma"
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
#: src/modules/settings/billing/components/internal/MeteredPriceSelector.tsx
|
||||
@@ -5149,6 +5252,13 @@ msgstr "Edit {objectLabelPlural}"
|
||||
msgid "Edit Account"
|
||||
msgstr "Edit Account"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr "Edit actions"
|
||||
|
||||
#. js-lingui-id: GpnfNN
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Edit Dashboard"
|
||||
@@ -5736,11 +5846,18 @@ msgstr "Enter your API key"
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Enterprise"
|
||||
|
||||
#. js-lingui-id: rmZVdg
|
||||
#: src/modules/settings/components/SettingsEnterpriseFeatureGateCard.tsx
|
||||
msgid "Enterprise feature"
|
||||
msgstr "Enterprise feature"
|
||||
|
||||
#. js-lingui-id: Kjjkt3
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Enterprise Feature"
|
||||
@@ -6350,7 +6467,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr "Failed to activate enterprise license. Please check your key or contact support."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr "Failed to activate skill"
|
||||
|
||||
@@ -6375,7 +6492,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr "Failed to delete jobs. Please try again later."
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr "Failed to delete skill"
|
||||
|
||||
@@ -6645,6 +6762,11 @@ msgstr "Field Name"
|
||||
msgid "Field on destination"
|
||||
msgstr "Field on destination"
|
||||
|
||||
#. js-lingui-id: P8JCfj
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field permission"
|
||||
msgstr "field permission"
|
||||
|
||||
#. js-lingui-id: RnX5oc
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "fields"
|
||||
@@ -6748,9 +6870,6 @@ msgid "Files"
|
||||
msgstr "Files"
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6767,6 +6886,11 @@ msgstr "Filter"
|
||||
msgid "Filter by event"
|
||||
msgstr "Filter by event"
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr "Filter by object type"
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7367,6 +7491,11 @@ msgstr "Hide group {groupValue}"
|
||||
msgid "Hide hidden groups"
|
||||
msgstr "Hide hidden groups"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr "Hide label"
|
||||
|
||||
#. js-lingui-id: i0qMbr
|
||||
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
|
||||
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
|
||||
@@ -7475,6 +7604,16 @@ msgstr "IAM credentials"
|
||||
msgid "IAM credentials configured"
|
||||
msgstr "IAM credentials configured"
|
||||
|
||||
#. js-lingui-id: LlQirF
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
|
||||
msgid "IAM role"
|
||||
msgstr "IAM role"
|
||||
|
||||
#. js-lingui-id: VjDLrJ
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "IAM role (instance profile)"
|
||||
msgstr "IAM role (instance profile)"
|
||||
|
||||
#. js-lingui-id: wwu18a
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Icon"
|
||||
@@ -7507,6 +7646,11 @@ msgstr "Identity Provider Metadata XML"
|
||||
msgid "if"
|
||||
msgstr "if"
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr "If disabled, use advanced search filters to find these records"
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7682,6 +7826,11 @@ msgstr "Inactive Skill Options"
|
||||
msgid "Inbox"
|
||||
msgstr "Inbox"
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr "Include in default search"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9103,6 +9252,7 @@ msgstr "Models for this provider. Toggle to enable or disable."
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr "Monday"
|
||||
|
||||
@@ -9139,10 +9289,10 @@ msgstr "Month of the year"
|
||||
msgid "monthly"
|
||||
msgstr "monthly"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#. js-lingui-id: +8Nek/
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr "Monthly subscription"
|
||||
msgid "Monthly"
|
||||
msgstr "Monthly"
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -9153,6 +9303,7 @@ msgstr "months"
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
msgid "More"
|
||||
msgstr "More"
|
||||
|
||||
@@ -9276,7 +9427,7 @@ msgstr "mySkill"
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/modules/settings/workspace/components/NameField.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/modules/settings/usage/components/UsageByUserTableSection.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
|
||||
@@ -9293,6 +9444,7 @@ msgstr "mySkill"
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9534,7 +9686,7 @@ msgstr "New record"
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr "New Skill"
|
||||
|
||||
@@ -9640,6 +9792,16 @@ msgstr "No agents available"
|
||||
msgid "No agents match your search"
|
||||
msgstr "No agents match your search"
|
||||
|
||||
#. js-lingui-id: nPalt1
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "No AI consumption recorded for this user."
|
||||
msgstr "No AI consumption recorded for this user."
|
||||
|
||||
#. js-lingui-id: 42kV9p
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "No AI usage data recorded yet."
|
||||
msgstr "No AI usage data recorded yet."
|
||||
|
||||
#. js-lingui-id: 9mx36q
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
msgid "No API keys assigned"
|
||||
@@ -9675,6 +9837,11 @@ msgstr "No body"
|
||||
msgid "No calling code"
|
||||
msgstr "No calling code"
|
||||
|
||||
#. js-lingui-id: d14J3J
|
||||
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
|
||||
msgid "No chat"
|
||||
msgstr "No chat"
|
||||
|
||||
#. js-lingui-id: wgUPZ1
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
msgid "No comment"
|
||||
@@ -9713,11 +9880,6 @@ msgstr "No credentials"
|
||||
msgid "No credit consumption recorded for this user."
|
||||
msgstr "No credit consumption recorded for this user."
|
||||
|
||||
#. js-lingui-id: H7TRcV
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "No credit consumption recorded yet."
|
||||
msgstr "No credit consumption recorded yet."
|
||||
|
||||
#. js-lingui-id: kxH3HO
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormCurrencyFieldInput.tsx
|
||||
msgid "No currency"
|
||||
@@ -9973,6 +10135,12 @@ msgstr "No permissions have been set for individual objects."
|
||||
msgid "No record is required to trigger this workflow"
|
||||
msgstr "No record is required to trigger this workflow"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr "No record selected"
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
@@ -10053,7 +10221,7 @@ msgstr "No triggers configured for this function."
|
||||
|
||||
#. js-lingui-id: WwlPOG
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "No usage data"
|
||||
msgstr "No usage data"
|
||||
|
||||
@@ -10258,6 +10426,7 @@ msgstr "object"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -10502,6 +10671,7 @@ msgstr "Open Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Open side panel"
|
||||
|
||||
@@ -10599,6 +10769,8 @@ msgstr "Organize"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Other"
|
||||
|
||||
@@ -10818,6 +10990,11 @@ msgstr "People I’ve sent emails to and received emails from."
|
||||
msgid "People I’ve sent emails to."
|
||||
msgstr "People I’ve sent emails to."
|
||||
|
||||
#. js-lingui-id: qMTN0w
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "Per-day AI consumption."
|
||||
msgstr "Per-day AI consumption."
|
||||
|
||||
#. js-lingui-id: i9iYjM
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
msgid "Per-day credit consumption."
|
||||
@@ -10973,6 +11150,12 @@ msgstr "Pie Chart"
|
||||
msgid "Pink"
|
||||
msgstr "Pink"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr "Pinned"
|
||||
|
||||
#. js-lingui-id: hx1ePY
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
|
||||
@@ -11519,6 +11702,12 @@ msgstr "Record-level"
|
||||
msgid "Records"
|
||||
msgstr "Records"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr "Records selected"
|
||||
|
||||
#. js-lingui-id: wRTiSD
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Red"
|
||||
@@ -11811,6 +12000,11 @@ msgstr "Reset"
|
||||
msgid "Reset 2FA"
|
||||
msgstr "Reset 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
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"
|
||||
@@ -11818,6 +12012,7 @@ msgstr "Reset to"
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Reset to default"
|
||||
|
||||
@@ -12119,6 +12314,7 @@ msgstr "Russian"
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr "Saturday"
|
||||
|
||||
@@ -12184,6 +12380,7 @@ msgstr "SDK"
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12243,7 +12440,7 @@ msgid "Search a role..."
|
||||
msgstr "Search a role..."
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr "Search a skill..."
|
||||
|
||||
@@ -12268,6 +12465,11 @@ msgstr "Search a type"
|
||||
msgid "Search a view..."
|
||||
msgstr "Search a view..."
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr "Search across indexed fields..."
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -12364,7 +12566,7 @@ msgid "Search folders..."
|
||||
msgstr "Search folders..."
|
||||
|
||||
#. js-lingui-id: uHAV+O
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/modules/settings/usage/components/UsageByUserTableSection.tsx
|
||||
msgid "Search for a user..."
|
||||
msgstr "Search for a user..."
|
||||
|
||||
@@ -12437,6 +12639,8 @@ msgstr "Searching the web for {query}"
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/settings/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "seat / month"
|
||||
@@ -13038,6 +13242,11 @@ msgstr "Show group {groupValue}"
|
||||
msgid "Show hidden groups"
|
||||
msgstr "Show hidden groups"
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr "Show hidden objects"
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13117,12 +13326,12 @@ msgid "Skill"
|
||||
msgstr "Skill"
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr "Skill activated"
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr "Skill deleted"
|
||||
|
||||
@@ -13139,6 +13348,7 @@ msgstr "Skill not found"
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr "Skills"
|
||||
|
||||
@@ -13284,10 +13494,10 @@ msgstr "Sorts"
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgstr "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr "Spaces and comma"
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
#: src/pages/settings/profile/appearance/components/LocalePicker.tsx
|
||||
@@ -13593,6 +13803,7 @@ msgstr "Sum"
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr "Sunday"
|
||||
|
||||
@@ -13741,43 +13952,24 @@ msgstr "System relations"
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr "System settings"
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr "System settings - {systemDateFormatLabel}"
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr "System Settings - {systemNumberFormatLabel}"
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr "System Settings - {systemTimeFormatLabel}"
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr "System settings - Monday"
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr "System settings - Saturday"
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr "System settings - Sunday"
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14458,6 +14650,12 @@ msgstr "Total Jobs"
|
||||
msgid "Total time"
|
||||
msgstr "Total time"
|
||||
|
||||
#. js-lingui-id: BxecEJ
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "Track AI consumption across your workspace."
|
||||
msgstr "Track AI consumption across your workspace."
|
||||
|
||||
#. js-lingui-id: YT/cKI
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
@@ -14830,6 +15028,13 @@ msgstr "Unlisted"
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr "Unnamed API Key"
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14975,10 +15180,10 @@ msgstr "Upgrade to {latestAvailableVersion}"
|
||||
msgid "Upgrade to access"
|
||||
msgstr "Upgrade to access"
|
||||
|
||||
#. js-lingui-id: jmVW3I
|
||||
#. js-lingui-id: Wurpq2
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Upgrade to Enterprise to access audit logs"
|
||||
msgstr "Upgrade to Enterprise to access audit logs"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr "Upgrade to Enterprise to access audit logs."
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
#: src/pages/settings/applications/components/SettingsApplicationVersionContainer.tsx
|
||||
@@ -15053,7 +15258,9 @@ msgstr "us-east-1"
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/pages/settings/SettingsUsage.tsx
|
||||
#: src/pages/settings/SettingsUsage.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/settings/usage/components/UsageByUserTableSection.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Usage"
|
||||
msgstr "Usage"
|
||||
|
||||
@@ -15067,6 +15274,11 @@ msgstr "Usage across all workspaces on this server"
|
||||
msgid "Usage Analytics"
|
||||
msgstr "Usage Analytics"
|
||||
|
||||
#. js-lingui-id: 7Kq6TI
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "Usage analytics requires ClickHouse. Contact your administrator."
|
||||
msgstr "Usage analytics requires ClickHouse. Contact your administrator."
|
||||
|
||||
#. js-lingui-id: 7vRxpC
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
@@ -15099,6 +15311,11 @@ msgstr "Use authenticator apps and browser extensions like 1Password, Authy, Mic
|
||||
msgid "Use best models only"
|
||||
msgstr "Use best models only"
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr "Use filter to see existing tools or create your own"
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15325,6 +15542,11 @@ msgstr "View"
|
||||
msgid "View Agent"
|
||||
msgstr "View Agent"
|
||||
|
||||
#. js-lingui-id: noHthC
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "View AI usage breakdown"
|
||||
msgstr "View AI usage breakdown"
|
||||
|
||||
#. js-lingui-id: nK72s8
|
||||
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
|
||||
msgid "View all evaluations"
|
||||
@@ -15638,6 +15860,11 @@ msgstr "Week"
|
||||
msgid "weeks"
|
||||
msgstr "weeks"
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr "Weight"
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
@@ -15800,6 +16027,7 @@ msgstr "Workflows"
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
@@ -15814,6 +16042,7 @@ msgstr "Workflows"
|
||||
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
|
||||
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
@@ -15940,10 +16169,10 @@ msgstr "Year"
|
||||
msgid "yearly"
|
||||
msgstr "yearly"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#. js-lingui-id: zkWmBh
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr "Yearly subscription"
|
||||
msgid "Yearly"
|
||||
msgstr "Yearly"
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
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
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -149,18 +149,15 @@ msgid "{0, plural, one {You do not have permission to access the {fieldsList} fi
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNIJYp
|
||||
#. placeholder {0}: formatNumber(totalCredits)
|
||||
#. placeholder {0}: formatNumber(datum.value)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/UsagePieChart.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "{0} credits"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: m8fdzW
|
||||
#. placeholder {0}: formatNumber(totalCredits)
|
||||
#. js-lingui-id: r4l/MK
|
||||
#. placeholder {0}: formatUsageValue(totalCredits)
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
msgid "{0} credits used"
|
||||
msgid "{0} used"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qdQhzv
|
||||
@@ -501,9 +498,9 @@ msgstr ""
|
||||
msgid "10,000 workflow node executions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bM5lnW
|
||||
#. js-lingui-id: rU05hS
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "12h - {hour12Label}"
|
||||
msgid "12h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 4EdXYs
|
||||
@@ -537,9 +534,9 @@ msgstr ""
|
||||
msgid "200 OK - {duration}ms"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mwTnop
|
||||
#. js-lingui-id: W1k7eB
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "24h - {hour24Label}"
|
||||
msgid "24h"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QsMprd
|
||||
@@ -765,6 +762,7 @@ msgstr ""
|
||||
#: src/modules/settings/security/components/SSO/SettingsSecuritySSORowDropdownMenu.tsx
|
||||
#: src/modules/settings/data-model/objects/components/SettingsObjectInactiveMenuDropDown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldDisabledActionDropdown.tsx
|
||||
#: src/modules/settings/components/SettingsEnterpriseFeatureGateCard.tsx
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
@@ -1323,6 +1321,7 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
@@ -1341,6 +1340,16 @@ msgstr ""
|
||||
msgid "AI Chat"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: E/lGXl
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "AI consumption across all workspaces."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kkfXGh
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI consumption over time."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kNfr85
|
||||
#: src/pages/settings/ai/forms/components/SettingsAIAgentForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSettingsTab.tsx
|
||||
@@ -1363,6 +1372,61 @@ msgstr ""
|
||||
msgid "AI Response Schema"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tzhisR
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Ad11E9
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "AI usage analytics across workspaces is available with an Enterprise key."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zkptxb
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI usage analytics is available with an Enterprise key."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: U2F/HK
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI usage analytics requires ClickHouse. Contact your administrator."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SknniY
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage by Model"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ehjYr9
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage by Type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X2afmM
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "AI Usage by User"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jyqPfh
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "AI Usage by Workspace"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KLyZ6L
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "AI User Usage"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: TLbVxH
|
||||
#: src/modules/settings/usage/utils/getOperationTypeLabel.ts
|
||||
msgid "AI Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BAiyFV
|
||||
#: src/pages/settings/admin-panel/SettingsAdminNewAiProvider.tsx
|
||||
msgid "AKIA..."
|
||||
@@ -1451,6 +1515,11 @@ msgstr ""
|
||||
msgid "All Metadata"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: zIk4M6
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "All objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aFE/OW
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
#: src/modules/settings/roles/role-permissions/objects-permissions/components/SettingsRolePermissionsObjectsTableHeader.tsx
|
||||
@@ -1741,6 +1810,11 @@ msgstr ""
|
||||
msgid "API key is required"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: sb6i1L
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "API key name cannot be empty"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Widx6n
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
msgid "API key roles"
|
||||
@@ -1806,9 +1880,9 @@ msgstr ""
|
||||
msgid "APIs & Webhooks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BnUHmx
|
||||
#. js-lingui-id: 0UMxlw
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Apostrophe and dot - {apostropheAndDotExample}"
|
||||
msgid "Apostrophe and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LMUw1U
|
||||
@@ -2357,6 +2431,11 @@ msgstr ""
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KYr9vA
|
||||
#: src/pages/settings/ai/components/SettingsAIModelsTab.tsx
|
||||
msgid "Best"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NgFKo1
|
||||
#: src/modules/workflow/workflow-trigger/utils/cron-to-human/descriptors/getMonthsDescription.ts
|
||||
msgid "between {startMonth} and {endMonth}"
|
||||
@@ -2378,6 +2457,8 @@ msgid "between the {startOrdinal} and {endOrdinal} of the month"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R+w/Va
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/pages/settings/SettingsUsage.tsx
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
#: src/pages/settings/SettingsBilling.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/hooks/useSettingsRolePermissionFlagConfig.ts
|
||||
@@ -2440,6 +2521,12 @@ msgstr ""
|
||||
msgid "Both"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1hGdwj
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "Breakdown across AI models."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qDsMss
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/ai-agent-action/components/WorkflowOutputSchemaBuilder.tsx
|
||||
msgid "Brief explanation of this output field"
|
||||
@@ -2925,6 +3012,7 @@ msgid "Clear the field or \"X\" to revert to environment/default value."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Gt8ndY
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "Click a user to see their daily breakdown."
|
||||
msgstr ""
|
||||
@@ -2966,6 +3054,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: CTdw8/
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "ClickHouse Not Configured"
|
||||
msgstr ""
|
||||
|
||||
@@ -3008,6 +3098,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr ""
|
||||
|
||||
@@ -3104,9 +3195,9 @@ msgstr ""
|
||||
msgid "Commands copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: A9u+7N
|
||||
#. js-lingui-id: QeCopv
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Commas and dot - {commasAndDotExample}"
|
||||
msgid "Commas and dot"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NBdIgR
|
||||
@@ -3213,6 +3304,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OLqG0t
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
msgid "Configure how this object appears in search results"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3377,6 +3473,7 @@ msgstr ""
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
@@ -3868,6 +3965,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: HAzhV7
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "Credentials"
|
||||
msgstr ""
|
||||
|
||||
@@ -3896,16 +3994,9 @@ msgstr ""
|
||||
msgid "Credit usage breakdown for your workspace."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UQ4Hjl
|
||||
#: src/modules/ai/components/internal/AIChatContextUsageButton.tsx
|
||||
#: src/modules/ai/components/internal/AIChatContextUsageButton.tsx
|
||||
msgid "credits"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lDIOek
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "Credits"
|
||||
msgstr ""
|
||||
|
||||
@@ -4096,6 +4187,12 @@ msgstr ""
|
||||
msgid "Czech"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ShUrwO
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "Daily AI Usage"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KXQkvT
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
@@ -4209,6 +4306,7 @@ msgstr ""
|
||||
#. js-lingui-id: r+cVRP
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/field-permissions/components/SettingsRolePermissionsObjectLevelObjectFieldPermissionTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Data type"
|
||||
msgstr ""
|
||||
|
||||
@@ -4340,7 +4438,7 @@ msgstr ""
|
||||
#. js-lingui-id: yAT3be
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectItemTableRow.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectFieldItemTableRow.tsx
|
||||
@@ -4358,6 +4456,11 @@ msgstr ""
|
||||
msgid "Decide which Sub-address fields you want to display"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Bn9+El
|
||||
#: src/modules/ai/components/AIChatEditorSection.tsx
|
||||
msgid "default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ovBPCi
|
||||
#: src/modules/settings/data-model/fields/forms/date/utils/getDisplayFormatLabel.ts
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/MultiSelectAddressFields.tsx
|
||||
@@ -4926,9 +5029,9 @@ msgstr ""
|
||||
msgid "Don't sync emails from team@ support@ noreply@..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bd+DPX
|
||||
#. js-lingui-id: Wm78zZ
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Dots and comma - {dotsAndCommaExample}"
|
||||
msgid "Dots and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LE8J+K
|
||||
@@ -5149,6 +5252,13 @@ msgstr ""
|
||||
msgid "Edit Account"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GpnfNN
|
||||
#: src/modules/command-menu-item/record/constants/DashboardCommandMenuItemsConfig.tsx
|
||||
msgid "Edit Dashboard"
|
||||
@@ -5736,11 +5846,18 @@ msgstr ""
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: rmZVdg
|
||||
#: src/modules/settings/components/SettingsEnterpriseFeatureGateCard.tsx
|
||||
msgid "Enterprise feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Kjjkt3
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
msgid "Enterprise Feature"
|
||||
@@ -6350,7 +6467,7 @@ msgid "Failed to activate enterprise license. Please check your key or contact s
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to activate skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -6375,7 +6492,7 @@ msgid "Failed to delete jobs. Please try again later."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bmwWKk
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Failed to delete skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -6645,6 +6762,11 @@ msgstr ""
|
||||
msgid "Field on destination"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: P8JCfj
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "field permission"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RnX5oc
|
||||
#: src/pages/settings/applications/SettingsAvailableApplicationDetails.tsx
|
||||
msgid "fields"
|
||||
@@ -6748,9 +6870,6 @@ msgid "Files"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o7J4JM
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIAgentsTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/find-records-action/components/WorkflowEditActionFindRecords.tsx
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
@@ -6767,6 +6886,11 @@ msgstr ""
|
||||
msgid "Filter by event"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: yZOiaW
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdown.tsx
|
||||
msgid "Filter by object type"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gVEHcL
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Filter by record ID"
|
||||
@@ -7367,6 +7491,11 @@ msgstr ""
|
||||
msgid "Hide hidden groups"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: i0qMbr
|
||||
#: src/modules/page-layout/constants/StandardPageLayoutTabTitleTranslations.ts
|
||||
#: src/modules/navigation/components/MainNavigationDrawerTabsRow.tsx
|
||||
@@ -7475,6 +7604,16 @@ msgstr ""
|
||||
msgid "IAM credentials configured"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: LlQirF
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAiProviderListCard.tsx
|
||||
msgid "IAM role"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: VjDLrJ
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
msgid "IAM role (instance profile)"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wwu18a
|
||||
#: src/modules/settings/data-model/objects/forms/components/SettingsDataModelObjectAboutForm.tsx
|
||||
msgid "Icon"
|
||||
@@ -7507,6 +7646,11 @@ msgstr ""
|
||||
msgid "if"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: K6ChR5
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "If disabled, use advanced search filters to find these records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZfP/Ap
|
||||
#: src/modules/object-record/record-table/empty-state/components/RecordTableEmptyStateRemote.tsx
|
||||
msgid "If this is unexpected, please verify your settings."
|
||||
@@ -7682,6 +7826,11 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wyip/m
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Include in default search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
@@ -9103,6 +9252,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: hty0d5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Monday"
|
||||
msgstr ""
|
||||
|
||||
@@ -9139,9 +9289,9 @@ msgstr ""
|
||||
msgid "monthly"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#. js-lingui-id: +8Nek/
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgid "Monthly"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
@@ -9153,6 +9303,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
@@ -9276,7 +9427,7 @@ msgstr ""
|
||||
#: src/pages/settings/admin-panel/SettingsAdminAiProviderDetail.tsx
|
||||
#: src/pages/onboarding/CreateProfile.tsx
|
||||
#: src/modules/settings/workspace/components/NameField.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/modules/settings/usage/components/UsageByUserTableSection.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOIdentitiesProvidersForm.tsx
|
||||
#: src/modules/settings/roles/role-permissions/permission-flags/components/SettingsRolePermissionsSettingsTableHeader.tsx
|
||||
@@ -9293,6 +9444,7 @@ msgstr ""
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTabEnvironmentVariableTableRow.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
#: src/modules/settings/data-model/new-object/components/SettingsAvailableStandardObjectsSection.tsx
|
||||
#: src/modules/settings/admin-panel/config-variables/components/SettingsAdminConfigVariablesTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -9534,7 +9686,7 @@ msgstr ""
|
||||
#. js-lingui-id: gWnSyg
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "New Skill"
|
||||
msgstr ""
|
||||
|
||||
@@ -9640,6 +9792,16 @@ msgstr ""
|
||||
msgid "No agents match your search"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nPalt1
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "No AI consumption recorded for this user."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 42kV9p
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "No AI usage data recorded yet."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9mx36q
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentTable.tsx
|
||||
msgid "No API keys assigned"
|
||||
@@ -9675,6 +9837,11 @@ msgstr ""
|
||||
msgid "No calling code"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: d14J3J
|
||||
#: src/modules/ai/components/NavigationDrawerAIChatContent.tsx
|
||||
msgid "No chat"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wgUPZ1
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
msgid "No comment"
|
||||
@@ -9713,11 +9880,6 @@ msgstr ""
|
||||
msgid "No credit consumption recorded for this user."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: H7TRcV
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "No credit consumption recorded yet."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kxH3HO
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormCurrencyFieldInput.tsx
|
||||
msgid "No currency"
|
||||
@@ -9973,6 +10135,12 @@ msgstr ""
|
||||
msgid "No record is required to trigger this workflow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: X8wJTR
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormSingleRecordPicker.tsx
|
||||
msgid "No records"
|
||||
@@ -10053,7 +10221,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: WwlPOG
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "No usage data"
|
||||
msgstr ""
|
||||
|
||||
@@ -10258,6 +10426,7 @@ msgstr ""
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
msgid "Object"
|
||||
@@ -10502,6 +10671,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
@@ -10599,6 +10769,8 @@ msgstr ""
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
@@ -10818,6 +10990,11 @@ msgstr ""
|
||||
msgid "People I’ve sent emails to."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qMTN0w
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
msgid "Per-day AI consumption."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: i9iYjM
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
msgid "Per-day credit consumption."
|
||||
@@ -10973,6 +11150,12 @@ msgstr ""
|
||||
msgid "Pink"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: hx1ePY
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsText.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/form-action/components/WorkflowFormFieldSettingsNumber.tsx
|
||||
@@ -11519,6 +11702,12 @@ msgstr ""
|
||||
msgid "Records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wRTiSD
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Red"
|
||||
@@ -11811,6 +12000,11 @@ msgstr ""
|
||||
msgid "Reset 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1IWc1n
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelResetContextToSelectionButton.tsx
|
||||
msgid "Reset to"
|
||||
@@ -11818,6 +12012,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: L+rMC9
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -12119,6 +12314,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: +5kO8P
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Saturday"
|
||||
msgstr ""
|
||||
|
||||
@@ -12184,6 +12380,7 @@ msgstr ""
|
||||
#: src/modules/sign-in-background-mock/components/SignInAppNavigationDrawerMock.tsx
|
||||
#: src/modules/side-panel/hooks/useOpenRecordsSearchPageInSidePanel.ts
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentWorkspaceMemberPickerDropdown.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/ObjectSettings.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminGeneral.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
@@ -12243,7 +12440,7 @@ msgid "Search a role..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lJNEce
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Search a skill..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12268,6 +12465,11 @@ msgstr ""
|
||||
msgid "Search a view..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: N7Z3jc
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Search across indexed fields..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +7s4fw
|
||||
#: src/modules/settings/roles/role-assignment/components/SettingsRoleAssignmentEntityPickerDropdown.tsx
|
||||
msgid "Search agents"
|
||||
@@ -12364,7 +12566,7 @@ msgid "Search folders..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uHAV+O
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
#: src/modules/settings/usage/components/UsageByUserTableSection.tsx
|
||||
msgid "Search for a user..."
|
||||
msgstr ""
|
||||
|
||||
@@ -12437,6 +12639,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/settings/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr ""
|
||||
@@ -13038,6 +13242,11 @@ msgstr ""
|
||||
msgid "Show hidden groups"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eOY8jq
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
msgid "Show hidden objects"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qi+g0a
|
||||
#: src/modules/spreadsheet-import/steps/components/ValidationStep/ValidationStep.tsx
|
||||
msgid "Show only rows with errors"
|
||||
@@ -13117,12 +13326,12 @@ msgid "Skill"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h4t38o
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill activated"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: /IoK74
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skill deleted"
|
||||
msgstr ""
|
||||
|
||||
@@ -13139,6 +13348,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: PCSkw2
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Skills"
|
||||
msgstr ""
|
||||
|
||||
@@ -13284,9 +13494,9 @@ msgstr ""
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: IEtmGM
|
||||
#. js-lingui-id: xqlr9R
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "Spaces and comma - {spacesAndCommaExample}"
|
||||
msgid "Spaces and comma"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 65A04M
|
||||
@@ -13593,6 +13803,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: DBC3t5
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
@@ -13741,43 +13952,24 @@ msgstr ""
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeZoneSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: E3AMmw
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsDateFormatSelect.tsx
|
||||
msgid "System settings - {systemDateFormatLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: uKM6SP
|
||||
#: src/modules/settings/experience/components/NumberFormatSelect.tsx
|
||||
msgid "System Settings - {systemNumberFormatLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0ZgB1e
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
#: src/modules/settings/experience/components/DateTimeSettingsTimeFormatSelect.tsx
|
||||
msgid "System Settings - {systemTimeFormatLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e89dEj
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Monday"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o+Kvng
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Saturday"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: gluMQd
|
||||
#: src/pages/settings/profile/appearance/components/DateTimeSettingsCalendarStartDaySelect.tsx
|
||||
msgid "System settings - Sunday"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HuA3RU
|
||||
#: src/modules/side-panel/components/hooks/usePageLayoutHeaderInfo.ts
|
||||
msgid "Tab"
|
||||
@@ -14456,6 +14648,12 @@ msgstr ""
|
||||
msgid "Total time"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: BxecEJ
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
#: src/pages/settings/ai/components/SettingsAIUsageTab.tsx
|
||||
msgid "Track AI consumption across your workspace."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YT/cKI
|
||||
#: src/modules/settings/billing/components/SettingsBillingCreditsSection.tsx
|
||||
msgid "Track your {intervalLabel} workflow credit consumption."
|
||||
@@ -14828,6 +15026,13 @@ msgstr ""
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Te2H8x
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
#: src/modules/settings/developers/components/SettingsApiKeysFieldItemTableRow.tsx
|
||||
msgid "Unnamed API Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14973,9 +15178,9 @@ msgstr ""
|
||||
msgid "Upgrade to access"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: jmVW3I
|
||||
#. js-lingui-id: Wurpq2
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
msgid "Upgrade to Enterprise to access audit logs"
|
||||
msgid "Upgrade to Enterprise to access audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +Gi3x1
|
||||
@@ -15051,7 +15256,9 @@ msgstr ""
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/pages/settings/SettingsUsage.tsx
|
||||
#: src/pages/settings/SettingsUsage.tsx
|
||||
#: src/modules/settings/hooks/useSettingsNavigationItems.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/settings/usage/components/UsageByUserTableSection.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
msgid "Usage"
|
||||
msgstr ""
|
||||
|
||||
@@ -15065,6 +15272,11 @@ msgstr ""
|
||||
msgid "Usage Analytics"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7Kq6TI
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "Usage analytics requires ClickHouse. Contact your administrator."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7vRxpC
|
||||
#: src/pages/settings/SettingsUsageUserDetail.tsx
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
@@ -15097,6 +15309,11 @@ msgstr ""
|
||||
msgid "Use best models only"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: cVOIgV
|
||||
#: src/pages/settings/ai/components/SettingsAgentSkills.tsx
|
||||
msgid "Use filter to see existing tools or create your own"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: oTTQsc
|
||||
#: src/modules/settings/domains/utils/getSubdomainValidationSchema.ts
|
||||
msgid "Use letter, number and dash only. Start and finish with a letter or a number"
|
||||
@@ -15323,6 +15540,11 @@ msgstr ""
|
||||
msgid "View Agent"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: noHthC
|
||||
#: src/modules/settings/usage/components/SettingsUsageAnalyticsSection.tsx
|
||||
msgid "View AI usage breakdown"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nK72s8
|
||||
#: src/pages/settings/ai/components/SettingsAgentLogsTab.tsx
|
||||
msgid "View all evaluations"
|
||||
@@ -15634,6 +15856,11 @@ msgstr ""
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WKHqM+
|
||||
#: src/modules/settings/data-model/object-details/components/tabs/SettingsObjectSearchSection.tsx
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nTuObL
|
||||
#: src/pages/auth/SignInUp.tsx
|
||||
msgid "Welcome to Twenty"
|
||||
@@ -15796,6 +16023,7 @@ msgstr ""
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentTurnDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAgentForm.tsx
|
||||
#: src/pages/settings/ai/SettingsAIUsageUserDetail.tsx
|
||||
#: src/pages/settings/ai/SettingsAIPrompts.tsx
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
@@ -15810,6 +16038,7 @@ msgstr ""
|
||||
#: src/modules/settings/domains/components/SettingsCustomDomain.tsx
|
||||
#: src/modules/settings/domains/components/SettingPublicDomain.tsx
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
#: src/modules/settings/admin-panel/ai/components/SettingsAdminAI.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownVisibilityContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
#: src/modules/navigation-menu-item/display/sections/workspace/components/WorkspaceSection.tsx
|
||||
@@ -15936,9 +16165,9 @@ msgstr ""
|
||||
msgid "yearly"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#. js-lingui-id: zkWmBh
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgid "Yearly"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user