Compare commits
14
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
aac099f2e8 | ||
|
|
a3c0c62506 | ||
|
|
390ae34ed8 | ||
|
|
fe59c333ac | ||
|
|
6c0da189cb | ||
|
|
5aea16f070 | ||
|
|
2f542d6763 | ||
|
|
4ac38449cb | ||
|
|
dab4cbcb7d | ||
|
|
a73f586619 | ||
|
|
d1126f507d | ||
|
|
3a1f10e572 | ||
|
|
d16299a624 | ||
|
|
61d058bb1f |
@@ -0,0 +1,66 @@
|
||||
name: CI Twenty Standard Front Component
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
|
||||
|
||||
jobs:
|
||||
changed-files-check:
|
||||
uses: ./.github/workflows/changed-files.yaml
|
||||
with:
|
||||
files: |
|
||||
package.json
|
||||
yarn.lock
|
||||
packages/twenty-standard-application/**
|
||||
packages/twenty-sdk/**
|
||||
packages/twenty-shared/**
|
||||
|
||||
standard-front-component-build-check:
|
||||
needs: changed-files-check
|
||||
if: needs.changed-files-check.outputs.any_changed == 'true'
|
||||
timeout-minutes: 30
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Fetch custom Github Actions and base branch history
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 10
|
||||
- name: Install dependencies
|
||||
uses: ./.github/actions/yarn-install
|
||||
- name: Build twenty-shared
|
||||
run: npx nx build twenty-shared
|
||||
- name: Build twenty-sdk
|
||||
run: npx nx build twenty-sdk
|
||||
- name: Build twenty-standard-application
|
||||
run: npx nx build twenty-standard-application
|
||||
- name: Check for pending standard front component build
|
||||
run: |
|
||||
if ! git diff --quiet -- packages/twenty-standard-application/src/build packages/twenty-standard-application/src/standard-front-component-build-manifest.ts; then
|
||||
echo "::error::Standard front component build output is out of date. Please run 'npx nx build twenty-standard-application' and commit the changes."
|
||||
echo ""
|
||||
echo "The following changes were detected:"
|
||||
echo "==================================================="
|
||||
git diff -- packages/twenty-standard-application/src/build packages/twenty-standard-application/src/standard-front-component-build-manifest.ts
|
||||
echo "==================================================="
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ci-twenty-standard-front-component-status-check:
|
||||
if: always() && !cancelled()
|
||||
timeout-minutes: 5
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
[
|
||||
changed-files-check,
|
||||
standard-front-component-build-check,
|
||||
]
|
||||
steps:
|
||||
- name: Fail job if any needs failed
|
||||
if: contains(needs.*.result, 'failure')
|
||||
run: exit 1
|
||||
+2
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@apollo/client": "^4.0.0",
|
||||
"@apollo/client": "^3.7.17",
|
||||
"@floating-ui/react": "^0.24.3",
|
||||
"@linaria/core": "^6.2.0",
|
||||
"@linaria/react": "^6.2.1",
|
||||
@@ -207,6 +207,7 @@
|
||||
"packages/twenty-e2e-testing",
|
||||
"packages/twenty-shared",
|
||||
"packages/twenty-sdk",
|
||||
"packages/twenty-standard-application",
|
||||
"packages/twenty-apps",
|
||||
"packages/twenty-cli",
|
||||
"packages/create-twenty-app",
|
||||
|
||||
@@ -58,12 +58,6 @@ yarn twenty function:execute --preInstall
|
||||
# Execute the post-install function
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Build the app for distribution
|
||||
yarn twenty app:build
|
||||
|
||||
# Publish the app to npm or directly to a Twenty server
|
||||
yarn twenty app:publish
|
||||
|
||||
# Uninstall the application from the current workspace
|
||||
yarn twenty app:uninstall
|
||||
```
|
||||
@@ -115,40 +109,29 @@ npx create-twenty-app@latest my-app -m
|
||||
- Use `yarn twenty app:dev` while you iterate — it watches, builds, and syncs changes to your workspace in real time.
|
||||
- `CoreApiClient` (for workspace data via `/graphql`) is auto-generated by `yarn twenty app:dev`. `MetadataApiClient` (for workspace configuration and file uploads via `/metadata`) ships pre-built with the SDK. Both are available via `import { CoreApiClient, MetadataApiClient } from 'twenty-sdk/clients'`.
|
||||
|
||||
## Build and publish your application
|
||||
## Publish your application
|
||||
|
||||
Once your app is ready, build and publish it using the CLI:
|
||||
Applications are currently stored in `twenty/packages/twenty-apps`.
|
||||
|
||||
```bash
|
||||
# Build the app (output goes to .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Build and create a tarball (.tgz) for distribution
|
||||
yarn twenty app:build --tarball
|
||||
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
|
||||
# Publish directly to a Twenty server (builds, uploads, and installs in one step)
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
### Publish to the Twenty marketplace
|
||||
|
||||
You can also contribute your application to the curated marketplace:
|
||||
You can share your application with all Twenty users:
|
||||
|
||||
```bash
|
||||
# pull the Twenty project
|
||||
git clone https://github.com/twentyhq/twenty.git
|
||||
cd twenty
|
||||
|
||||
# create a new branch
|
||||
git checkout -b feature/my-awesome-app
|
||||
```
|
||||
|
||||
- Copy your app folder into `twenty/packages/twenty-apps`.
|
||||
- Commit your changes and open a pull request on https://github.com/twentyhq/twenty
|
||||
|
||||
```bash
|
||||
git commit -m "Add new application"
|
||||
git push
|
||||
```
|
||||
|
||||
Our team reviews contributions for quality, security, and reusability before merging.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "create-twenty-app",
|
||||
"version": "0.7.0",
|
||||
"version": "0.7.0-canary.0",
|
||||
"description": "Command-line interface to create Twenty application",
|
||||
"main": "dist/cli.cjs",
|
||||
"bin": "dist/cli.cjs",
|
||||
|
||||
@@ -1,3 +1,13 @@
|
||||
generated
|
||||
|
||||
# Ignore .twenty build output for all apps
|
||||
.twenty
|
||||
|
||||
# Allow committed fixture metadata (used by dev seeder)
|
||||
!fixtures/**/.twenty
|
||||
fixtures/**/.twenty/*
|
||||
!fixtures/**/.twenty/output
|
||||
fixtures/**/.twenty/output/**
|
||||
!fixtures/**/.twenty/output/manifest.json
|
||||
!fixtures/**/.twenty/output/package.json
|
||||
!fixtures/**/.twenty/output/yarn.lock
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
import path from 'path';
|
||||
|
||||
import { buildAndValidateManifest } from '@/cli/utilities/build/manifest/build-and-validate-manifest';
|
||||
import { buildApplication } from '@/cli/utilities/build/common/build-application';
|
||||
import { manifestUpdateChecksums } from '@/cli/utilities/build/manifest/manifest-update-checksums';
|
||||
import { writeManifestToOutput } from '@/cli/utilities/build/manifest/manifest-writer';
|
||||
|
||||
const FIXTURE_APPS = ['hello-world-app', 'postcard-app', 'minimal-app'];
|
||||
|
||||
const buildFixture = async (fixtureName: string): Promise<void> => {
|
||||
const appPath = path.resolve(__dirname, fixtureName);
|
||||
|
||||
console.log(`\n--- Building fixture: ${fixtureName} ---`);
|
||||
console.log(` App path: ${appPath}`);
|
||||
|
||||
const manifestResult = await buildAndValidateManifest(appPath);
|
||||
|
||||
if (!manifestResult.success) {
|
||||
console.error(` FAILED to build manifest: ${manifestResult.errors.join(', ')}`);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
const { manifest, filePaths } = manifestResult;
|
||||
|
||||
for (const warning of manifestResult.warnings) {
|
||||
console.warn(` Warning: ${warning}`);
|
||||
}
|
||||
|
||||
const buildResult = await buildApplication({ appPath, manifest, filePaths });
|
||||
|
||||
const updatedManifest = manifestUpdateChecksums({
|
||||
manifest,
|
||||
builtFileInfos: buildResult.builtFileInfos,
|
||||
});
|
||||
|
||||
await writeManifestToOutput(appPath, updatedManifest);
|
||||
|
||||
console.log(` Built ${buildResult.builtFileInfos.size} files`);
|
||||
console.log(` Output: ${path.join(appPath, '.twenty', 'output')}`);
|
||||
};
|
||||
|
||||
const main = async () => {
|
||||
for (const fixture of FIXTURE_APPS) {
|
||||
await buildFixture(fixture);
|
||||
}
|
||||
|
||||
console.log('\nDone.');
|
||||
};
|
||||
|
||||
main().catch((error) => {
|
||||
console.error('Fatal error:', error);
|
||||
process.exit(1);
|
||||
});
|
||||
@@ -0,0 +1,2 @@
|
||||
generated
|
||||
node_modules
|
||||
@@ -0,0 +1,404 @@
|
||||
{
|
||||
"application": {
|
||||
"universalIdentifier": "6563e091-9f5b-4026-a3ea-7e3b3d09e218",
|
||||
"displayName": "Hello world",
|
||||
"description": "",
|
||||
"defaultRoleUniversalIdentifier": "9238bc7b-d38f-4a1c-9d19-31ab7bc67a2f",
|
||||
"yarnLockChecksum": null,
|
||||
"packageJsonChecksum": null,
|
||||
"apiClientChecksum": "6db455b2541abbd2d4e9f85469bdc532",
|
||||
"preInstallLogicFunctionUniversalIdentifier": "1272ffdb-8e2f-492c-ab37-66c2b97e9c23",
|
||||
"postInstallLogicFunctionUniversalIdentifier": "7a3f4684-51db-494d-833b-a747a3b90507"
|
||||
},
|
||||
"objects": [
|
||||
{
|
||||
"universalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"nameSingular": "exampleItem",
|
||||
"namePlural": "exampleItems",
|
||||
"labelSingular": "Example item",
|
||||
"labelPlural": "Example items",
|
||||
"description": "A sample custom object",
|
||||
"icon": "IconBox",
|
||||
"labelIdentifierFieldMetadataUniversalIdentifier": "d2d7f6cd-33f6-456f-bf00-17adeca926ba",
|
||||
"fields": [
|
||||
{
|
||||
"universalIdentifier": "d2d7f6cd-33f6-456f-bf00-17adeca926ba",
|
||||
"type": "TEXT",
|
||||
"name": "name",
|
||||
"label": "Name",
|
||||
"description": "Name of the example item",
|
||||
"icon": "IconAbc"
|
||||
},
|
||||
{
|
||||
"name": "id",
|
||||
"label": "Id",
|
||||
"description": "Id",
|
||||
"icon": "Icon123",
|
||||
"isNullable": false,
|
||||
"defaultValue": "uuid",
|
||||
"type": "UUID",
|
||||
"universalIdentifier": "5ba62991-6034-555c-b984-5e84897eaa9f"
|
||||
},
|
||||
{
|
||||
"name": "createdAt",
|
||||
"label": "Creation date",
|
||||
"description": "Creation date",
|
||||
"icon": "IconCalendar",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "8b616045-237c-574d-8689-73f06acff8d8"
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"label": "Last update",
|
||||
"description": "Last time the record was changed",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "ced5587d-d9de-51bf-9ad0-74af6198fca4"
|
||||
},
|
||||
{
|
||||
"name": "deletedAt",
|
||||
"label": "Deleted at",
|
||||
"description": "Deletion date",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "674ee694-0b0f-557f-993c-2b1404db0811"
|
||||
},
|
||||
{
|
||||
"name": "createdBy",
|
||||
"label": "Created by",
|
||||
"description": "The creator of the record",
|
||||
"icon": "IconCreativeCommonsSa",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "5ed1503f-2803-59d1-9b27-e4f1701b8c2a"
|
||||
},
|
||||
{
|
||||
"name": "updatedBy",
|
||||
"label": "Updated by",
|
||||
"description": "The workspace member who last updated the record",
|
||||
"icon": "IconUserCircle",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "3d3a80b4-14a0-55a0-b534-1b23f043c1d5"
|
||||
},
|
||||
{
|
||||
"name": "position",
|
||||
"label": "Position",
|
||||
"description": "Position",
|
||||
"icon": "IconHierarchy2",
|
||||
"isNullable": false,
|
||||
"defaultValue": 0,
|
||||
"type": "POSITION",
|
||||
"universalIdentifier": "a714b336-d765-5dff-b34b-fcc6ab037e3b"
|
||||
},
|
||||
{
|
||||
"name": "searchVector",
|
||||
"label": "Search vector",
|
||||
"icon": "IconSearch",
|
||||
"description": "Search vector",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "TS_VECTOR",
|
||||
"universalIdentifier": "068064e1-c9da-5772-9293-9e57183cee67"
|
||||
},
|
||||
{
|
||||
"name": "timelineActivities",
|
||||
"label": "Timeline Activities",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "e5feca94-536c-5779-8c33-05e39705bcd7",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3d140ea1-fc57-5c8c-96fd-7d1525ed6a69",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5"
|
||||
},
|
||||
{
|
||||
"name": "favorites",
|
||||
"label": "Favorites",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "3781cc69-9d3f-58d0-927c-c1c552f37a1d",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3043fec0-091c-59ff-95ef-b9d95fbfa3e6",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860"
|
||||
},
|
||||
{
|
||||
"name": "attachments",
|
||||
"label": "Attachments",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "3ad98da8-42e1-50e3-b73b-8c06fa720e2a",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "e1232464-8f83-5459-aa94-a40cda8d949a",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a"
|
||||
},
|
||||
{
|
||||
"name": "noteTargets",
|
||||
"label": "Note Targets",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "67cae4ab-7d3d-5a66-8d06-ca24568ebe76",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "9eeb7b0d-37e4-5a93-97c9-3dbb77fdb318",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400"
|
||||
},
|
||||
{
|
||||
"name": "taskTargets",
|
||||
"label": "Task Targets",
|
||||
"description": "Example items tied to the ExampleItem",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "a3b9f10c-f780-58cc-bbc9-402ed5f136f6",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "5d46d303-452d-5c9c-ab64-0a9768b87956",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"objectUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"universalIdentifier": "770d32c2-cf12-4ab2-b66d-73f92dc239b5",
|
||||
"type": "NUMBER",
|
||||
"name": "priority",
|
||||
"label": "Priority",
|
||||
"description": "Priority level for the example item (1-10)"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconTimelineEvent",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "3d140ea1-fc57-5c8c-96fd-7d1525ed6a69",
|
||||
"objectUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "e5feca94-536c-5779-8c33-05e39705bcd7",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-9a2b-4c3d-a4e5-f6a7b8c9d0e1"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconHeart",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "3043fec0-091c-59ff-95ef-b9d95fbfa3e6",
|
||||
"objectUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3781cc69-9d3f-58d0-927c-c1c552f37a1d",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "RELATION"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconFileImport",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "e1232464-8f83-5459-aa94-a40cda8d949a",
|
||||
"objectUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "3ad98da8-42e1-50e3-b73b-8c06fa720e2a",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f634-435d-ab8d-e1168b375c69"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "9eeb7b0d-37e4-5a93-97c9-3dbb77fdb318",
|
||||
"objectUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "67cae4ab-7d3d-5a66-8d06-ca24568ebe76",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f635-435d-ab8d-e1168b375c70"
|
||||
},
|
||||
{
|
||||
"name": "targetExampleItem",
|
||||
"label": "ExampleItem",
|
||||
"description": "ExampleItem Example item",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetExampleItemId"
|
||||
},
|
||||
"universalIdentifier": "5d46d303-452d-5c9c-ab64-0a9768b87956",
|
||||
"objectUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "a3b9f10c-f780-58cc-bbc9-402ed5f136f6",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f636-435d-ab8d-e1168b375c71"
|
||||
}
|
||||
],
|
||||
"roles": [
|
||||
{
|
||||
"universalIdentifier": "9238bc7b-d38f-4a1c-9d19-31ab7bc67a2f",
|
||||
"label": "Hello world default function role",
|
||||
"description": "Hello world default function role",
|
||||
"canReadAllObjectRecords": true,
|
||||
"canUpdateAllObjectRecords": true,
|
||||
"canSoftDeleteAllObjectRecords": true,
|
||||
"canDestroyAllObjectRecords": false
|
||||
}
|
||||
],
|
||||
"skills": [
|
||||
{
|
||||
"universalIdentifier": "d0940029-9d3c-40be-903a-52d65393028f",
|
||||
"name": "example-skill",
|
||||
"label": "Example Skill",
|
||||
"description": "A sample skill for your application",
|
||||
"icon": "IconBrain",
|
||||
"content": "Add your skill instructions here. Skills provide context and capabilities to AI agents."
|
||||
}
|
||||
],
|
||||
"agents": [],
|
||||
"logicFunctions": [
|
||||
{
|
||||
"universalIdentifier": "2baa26eb-9aaf-4856-a4f4-30d6fd6480ee",
|
||||
"name": "hello-world-logic-function",
|
||||
"description": "A simple logic function",
|
||||
"timeoutSeconds": 5,
|
||||
"httpRouteTriggerSettings": {
|
||||
"path": "/hello-world-logic-function",
|
||||
"httpMethod": "GET",
|
||||
"isAuthRequired": false
|
||||
},
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "src/logic-functions/hello-world.ts",
|
||||
"builtHandlerPath": "src/logic-functions/hello-world.mjs",
|
||||
"builtHandlerChecksum": "f1a0565e18366e6c531438631137d23b"
|
||||
},
|
||||
{
|
||||
"universalIdentifier": "7a3f4684-51db-494d-833b-a747a3b90507",
|
||||
"name": "post-install",
|
||||
"description": "Runs after installation to set up the application.",
|
||||
"timeoutSeconds": 300,
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "src/logic-functions/post-install.ts",
|
||||
"builtHandlerPath": "src/logic-functions/post-install.mjs",
|
||||
"builtHandlerChecksum": "7b016a1819c4e2355a80a895464032a5"
|
||||
},
|
||||
{
|
||||
"universalIdentifier": "1272ffdb-8e2f-492c-ab37-66c2b97e9c23",
|
||||
"name": "pre-install",
|
||||
"description": "Runs before installation to prepare the application.",
|
||||
"timeoutSeconds": 300,
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "src/logic-functions/pre-install.ts",
|
||||
"builtHandlerPath": "src/logic-functions/pre-install.mjs",
|
||||
"builtHandlerChecksum": "e2151e31924929390a5933ebf7419465"
|
||||
}
|
||||
],
|
||||
"frontComponents": [
|
||||
{
|
||||
"universalIdentifier": "d371f098-5b2c-42f0-898d-94459f1ee337",
|
||||
"name": "hello-world-front-component",
|
||||
"description": "A sample front component",
|
||||
"componentName": "HelloWorld",
|
||||
"sourceComponentPath": "src/front-components/hello-world.tsx",
|
||||
"builtComponentPath": "src/front-components/hello-world.mjs",
|
||||
"builtComponentChecksum": "826d5d3f633496d7c2a4f902589b83ed",
|
||||
"isHeadless": false
|
||||
}
|
||||
],
|
||||
"publicAssets": [],
|
||||
"views": [
|
||||
{
|
||||
"universalIdentifier": "e004df40-29f3-47ba-b39d-d3a5c444367a",
|
||||
"name": "All example items",
|
||||
"objectUniversalIdentifier": "dfd43356-39b3-4b55-b4a7-279bec689928",
|
||||
"icon": "IconList",
|
||||
"key": "INDEX",
|
||||
"position": 0,
|
||||
"fields": [
|
||||
{
|
||||
"universalIdentifier": "496c40c2-5766-419c-93bf-20fdad3f34bb",
|
||||
"fieldMetadataUniversalIdentifier": "d2d7f6cd-33f6-456f-bf00-17adeca926ba",
|
||||
"position": 0,
|
||||
"isVisible": true,
|
||||
"size": 200
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"navigationMenuItems": [
|
||||
{
|
||||
"universalIdentifier": "10f90627-e9c2-44b7-9742-bed77e3d1b17",
|
||||
"name": "example-navigation-menu-item",
|
||||
"icon": "IconList",
|
||||
"color": "blue",
|
||||
"position": 0,
|
||||
"viewUniversalIdentifier": "e004df40-29f3-47ba-b39d-d3a5c444367a"
|
||||
}
|
||||
],
|
||||
"pageLayouts": []
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "hello-world-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"app:dev": "twenty app:dev",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import { defineApplication } from 'twenty-sdk';
|
||||
import { DEFAULT_ROLE_UNIVERSAL_IDENTIFIER } from './src/roles/default-role';
|
||||
|
||||
export const APPLICATION_UNIVERSAL_IDENTIFIER =
|
||||
'6563e091-9f5b-4026-a3ea-7e3b3d09e218';
|
||||
|
||||
export default defineApplication({
|
||||
universalIdentifier: APPLICATION_UNIVERSAL_IDENTIFIER,
|
||||
displayName: 'Hello world',
|
||||
description: '',
|
||||
defaultRoleUniversalIdentifier: DEFAULT_ROLE_UNIVERSAL_IDENTIFIER,
|
||||
});
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "hello-world-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"app:dev": "twenty app:dev",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
import { defineField, FieldType } from 'twenty-sdk';
|
||||
import { EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER } from 'src/objects/example-object';
|
||||
|
||||
export default defineField({
|
||||
objectUniversalIdentifier: EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER,
|
||||
universalIdentifier: '770d32c2-cf12-4ab2-b66d-73f92dc239b5',
|
||||
type: FieldType.NUMBER,
|
||||
name: 'priority',
|
||||
label: 'Priority',
|
||||
description: 'Priority level for the example item (1-10)',
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
import { defineFrontComponent } from 'twenty-sdk';
|
||||
|
||||
export const HelloWorld = () => {
|
||||
return (
|
||||
<div style={{ padding: '20px', fontFamily: 'sans-serif' }}>
|
||||
<h1>Hello, World!</h1>
|
||||
<p>This is your first front component.</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default defineFrontComponent({
|
||||
universalIdentifier: 'd371f098-5b2c-42f0-898d-94459f1ee337',
|
||||
name: 'hello-world-front-component',
|
||||
description: 'A sample front component',
|
||||
component: HelloWorld,
|
||||
});
|
||||
@@ -0,0 +1,18 @@
|
||||
import { defineLogicFunction } from 'twenty-sdk';
|
||||
|
||||
const handler = async (): Promise<{ message: string }> => {
|
||||
return { message: 'Hello, World!' };
|
||||
};
|
||||
|
||||
export default defineLogicFunction({
|
||||
universalIdentifier: '2baa26eb-9aaf-4856-a4f4-30d6fd6480ee',
|
||||
name: 'hello-world-logic-function',
|
||||
description: 'A simple logic function',
|
||||
timeoutSeconds: 5,
|
||||
handler,
|
||||
httpRouteTriggerSettings: {
|
||||
path: '/hello-world-logic-function',
|
||||
httpMethod: 'GET',
|
||||
isAuthRequired: false,
|
||||
},
|
||||
});
|
||||
@@ -0,0 +1,13 @@
|
||||
import { definePostInstallLogicFunction, type InstallLogicFunctionPayload } from 'twenty-sdk';
|
||||
|
||||
const handler = async (payload: InstallLogicFunctionPayload): Promise<void> => {
|
||||
console.log('Post install logic function executed successfully!', payload.previousVersion);
|
||||
};
|
||||
|
||||
export default definePostInstallLogicFunction({
|
||||
universalIdentifier: '7a3f4684-51db-494d-833b-a747a3b90507',
|
||||
name: 'post-install',
|
||||
description: 'Runs after installation to set up the application.',
|
||||
timeoutSeconds: 300,
|
||||
handler,
|
||||
});
|
||||
@@ -0,0 +1,13 @@
|
||||
import { definePreInstallLogicFunction, type InstallLogicFunctionPayload } from 'twenty-sdk';
|
||||
|
||||
const handler = async (payload: InstallLogicFunctionPayload): Promise<void> => {
|
||||
console.log('Pre install logic function executed successfully!', payload.previousVersion);
|
||||
};
|
||||
|
||||
export default definePreInstallLogicFunction({
|
||||
universalIdentifier: '1272ffdb-8e2f-492c-ab37-66c2b97e9c23',
|
||||
name: 'pre-install',
|
||||
description: 'Runs before installation to prepare the application.',
|
||||
timeoutSeconds: 300,
|
||||
handler,
|
||||
});
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import { defineNavigationMenuItem } from 'twenty-sdk';
|
||||
import { EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER } from 'src/views/example-view';
|
||||
|
||||
export default defineNavigationMenuItem({
|
||||
universalIdentifier: '10f90627-e9c2-44b7-9742-bed77e3d1b17',
|
||||
name: 'example-navigation-menu-item',
|
||||
icon: 'IconList',
|
||||
color: 'blue',
|
||||
position: 0,
|
||||
viewUniversalIdentifier: EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER,
|
||||
});
|
||||
@@ -0,0 +1,28 @@
|
||||
import { defineObject, FieldType } from 'twenty-sdk';
|
||||
|
||||
export const EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER =
|
||||
'dfd43356-39b3-4b55-b4a7-279bec689928';
|
||||
|
||||
export const NAME_FIELD_UNIVERSAL_IDENTIFIER =
|
||||
'd2d7f6cd-33f6-456f-bf00-17adeca926ba';
|
||||
|
||||
export default defineObject({
|
||||
universalIdentifier: EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER,
|
||||
nameSingular: 'exampleItem',
|
||||
namePlural: 'exampleItems',
|
||||
labelSingular: 'Example item',
|
||||
labelPlural: 'Example items',
|
||||
description: 'A sample custom object',
|
||||
icon: 'IconBox',
|
||||
labelIdentifierFieldMetadataUniversalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
fields: [
|
||||
{
|
||||
universalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
type: FieldType.TEXT,
|
||||
name: 'name',
|
||||
label: 'Name',
|
||||
description: 'Name of the example item',
|
||||
icon: 'IconAbc',
|
||||
},
|
||||
],
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { defineRole } from 'twenty-sdk';
|
||||
|
||||
export const DEFAULT_ROLE_UNIVERSAL_IDENTIFIER =
|
||||
'9238bc7b-d38f-4a1c-9d19-31ab7bc67a2f';
|
||||
|
||||
export default defineRole({
|
||||
universalIdentifier: DEFAULT_ROLE_UNIVERSAL_IDENTIFIER,
|
||||
label: 'Hello world default function role',
|
||||
description: 'Hello world default function role',
|
||||
canReadAllObjectRecords: true,
|
||||
canUpdateAllObjectRecords: true,
|
||||
canSoftDeleteAllObjectRecords: true,
|
||||
canDestroyAllObjectRecords: false,
|
||||
});
|
||||
@@ -0,0 +1,13 @@
|
||||
import { defineSkill } from 'twenty-sdk';
|
||||
|
||||
export const EXAMPLE_SKILL_UNIVERSAL_IDENTIFIER =
|
||||
'd0940029-9d3c-40be-903a-52d65393028f';
|
||||
|
||||
export default defineSkill({
|
||||
universalIdentifier: EXAMPLE_SKILL_UNIVERSAL_IDENTIFIER,
|
||||
name: 'example-skill',
|
||||
label: 'Example Skill',
|
||||
description: 'A sample skill for your application',
|
||||
icon: 'IconBrain',
|
||||
content: 'Add your skill instructions here. Skills provide context and capabilities to AI agents.',
|
||||
});
|
||||
@@ -0,0 +1,22 @@
|
||||
import { defineView } from 'twenty-sdk';
|
||||
import { EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER, NAME_FIELD_UNIVERSAL_IDENTIFIER } from 'src/objects/example-object';
|
||||
|
||||
export const EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER = 'e004df40-29f3-47ba-b39d-d3a5c444367a';
|
||||
|
||||
export default defineView({
|
||||
universalIdentifier: EXAMPLE_VIEW_UNIVERSAL_IDENTIFIER,
|
||||
name: 'All example items',
|
||||
objectUniversalIdentifier: EXAMPLE_OBJECT_UNIVERSAL_IDENTIFIER,
|
||||
icon: 'IconList',
|
||||
key: 'INDEX',
|
||||
position: 0,
|
||||
fields: [
|
||||
{
|
||||
universalIdentifier: '496c40c2-5766-419c-93bf-20fdad3f34bb',
|
||||
fieldMetadataUniversalIdentifier: NAME_FIELD_UNIVERSAL_IDENTIFIER,
|
||||
position: 0,
|
||||
isVisible: true,
|
||||
size: 200,
|
||||
},
|
||||
],
|
||||
});
|
||||
@@ -0,0 +1,17 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2020",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"skipLibCheck": true,
|
||||
"jsx": "react-jsx",
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"src/*": ["./src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["**/*"],
|
||||
"exclude": ["node_modules", "dist", ".twenty"]
|
||||
}
|
||||
@@ -0,0 +1,342 @@
|
||||
{
|
||||
"application": {
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000001",
|
||||
"displayName": "Root App",
|
||||
"description": "An app with all entities at root level",
|
||||
"icon": "IconFolder",
|
||||
"defaultRoleUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000002",
|
||||
"yarnLockChecksum": "d41d8cd98f00b204e9800998ecf8427e",
|
||||
"packageJsonChecksum": "ac87abb5113d9d09be71481efc123800",
|
||||
"apiClientChecksum": null
|
||||
},
|
||||
"objects": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"nameSingular": "myNote",
|
||||
"namePlural": "myNotes",
|
||||
"labelSingular": "My note",
|
||||
"labelPlural": "My notes",
|
||||
"description": "A simple root-level object",
|
||||
"icon": "IconNote",
|
||||
"labelIdentifierFieldMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000031",
|
||||
"fields": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000031",
|
||||
"type": "TEXT",
|
||||
"label": "Title",
|
||||
"name": "title"
|
||||
},
|
||||
{
|
||||
"name": "id",
|
||||
"label": "Id",
|
||||
"description": "Id",
|
||||
"icon": "Icon123",
|
||||
"isNullable": false,
|
||||
"defaultValue": "uuid",
|
||||
"type": "UUID",
|
||||
"universalIdentifier": "5bdb4f57-a349-56d0-b421-845fd55b3026"
|
||||
},
|
||||
{
|
||||
"name": "name",
|
||||
"label": "Name",
|
||||
"description": "Name",
|
||||
"icon": "IconAbc",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "TEXT",
|
||||
"universalIdentifier": "86cc7b06-26de-5b7b-bf4a-31fa246dfd90"
|
||||
},
|
||||
{
|
||||
"name": "createdAt",
|
||||
"label": "Creation date",
|
||||
"description": "Creation date",
|
||||
"icon": "IconCalendar",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "abe3bc69-1a51-5814-a722-74f5a025e92a"
|
||||
},
|
||||
{
|
||||
"name": "updatedAt",
|
||||
"label": "Last update",
|
||||
"description": "Last time the record was changed",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": false,
|
||||
"defaultValue": "now",
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "c296d408-9720-5a86-8586-3490fbf04b86"
|
||||
},
|
||||
{
|
||||
"name": "deletedAt",
|
||||
"label": "Deleted at",
|
||||
"description": "Deletion date",
|
||||
"icon": "IconCalendarClock",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "DATE_TIME",
|
||||
"universalIdentifier": "488333a2-f4ff-5790-88ef-21f07f8f1985"
|
||||
},
|
||||
{
|
||||
"name": "createdBy",
|
||||
"label": "Created by",
|
||||
"description": "The creator of the record",
|
||||
"icon": "IconCreativeCommonsSa",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "fba6e01b-6579-554e-ad64-a676003c8e68"
|
||||
},
|
||||
{
|
||||
"name": "updatedBy",
|
||||
"label": "Updated by",
|
||||
"description": "The workspace member who last updated the record",
|
||||
"icon": "IconUserCircle",
|
||||
"isNullable": false,
|
||||
"defaultValue": {
|
||||
"name": "''",
|
||||
"source": "'MANUAL'"
|
||||
},
|
||||
"type": "ACTOR",
|
||||
"universalIdentifier": "fa60f87d-15c8-5ff7-9da0-191fa14a922f"
|
||||
},
|
||||
{
|
||||
"name": "position",
|
||||
"label": "Position",
|
||||
"description": "Position",
|
||||
"icon": "IconHierarchy2",
|
||||
"isNullable": false,
|
||||
"defaultValue": 0,
|
||||
"type": "POSITION",
|
||||
"universalIdentifier": "4a5d7791-ddc9-53ee-bc46-699da7373290"
|
||||
},
|
||||
{
|
||||
"name": "searchVector",
|
||||
"label": "Search vector",
|
||||
"icon": "IconSearch",
|
||||
"description": "Search vector",
|
||||
"isNullable": true,
|
||||
"defaultValue": null,
|
||||
"type": "TS_VECTOR",
|
||||
"universalIdentifier": "0f00bc3b-f313-5206-8496-842af20a538a"
|
||||
},
|
||||
{
|
||||
"name": "timelineActivities",
|
||||
"label": "Timeline Activities",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "12c84c1c-6e3f-54c5-a9a8-e93c7b46ac35",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "7e28b1ea-9a94-5d36-bc03-3f12f476867a",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5"
|
||||
},
|
||||
{
|
||||
"name": "favorites",
|
||||
"label": "Favorites",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "ed80c73b-25ff-5a3c-99c7-e27fa2f2611e",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "698f12fe-3feb-55e3-b6cc-73375f1a8ae6",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860"
|
||||
},
|
||||
{
|
||||
"name": "attachments",
|
||||
"label": "Attachments",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "56a872c8-7a1e-563d-8772-3978c2c5c220",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "721b12d8-7a3d-5e13-b8d5-62b3ad8cb8b5",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a"
|
||||
},
|
||||
{
|
||||
"name": "noteTargets",
|
||||
"label": "Note Targets",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "011595e8-7524-5ec7-9fbc-4bd3c42d7d24",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "94b6f269-fc9a-5bcd-af5b-2bdac69f276b",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400"
|
||||
},
|
||||
{
|
||||
"name": "taskTargets",
|
||||
"label": "Task Targets",
|
||||
"description": "My notes tied to the MyNote",
|
||||
"icon": "IconBuildingSkyscraper",
|
||||
"isNullable": true,
|
||||
"type": "RELATION",
|
||||
"universalSettings": {
|
||||
"relationType": "ONE_TO_MANY"
|
||||
},
|
||||
"universalIdentifier": "dd734fa3-26c3-53dd-91aa-577c313e1fa4",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "50da3cfa-dea5-5c9b-b1b7-cb615e1df4c3",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconTimelineEvent",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "7e28b1ea-9a94-5d36-bc03-3f12f476867a",
|
||||
"objectUniversalIdentifier": "20202020-6736-4337-b5c4-8b39fae325a5",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "12c84c1c-6e3f-54c5-a9a8-e93c7b46ac35",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-9a2b-4c3d-a4e5-f6a7b8c9d0e1"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconHeart",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "698f12fe-3feb-55e3-b6cc-73375f1a8ae6",
|
||||
"objectUniversalIdentifier": "20202020-ab56-4e05-92a3-e2414a499860",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "ed80c73b-25ff-5a3c-99c7-e27fa2f2611e",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "RELATION"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconFileImport",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "721b12d8-7a3d-5e13-b8d5-62b3ad8cb8b5",
|
||||
"objectUniversalIdentifier": "20202020-bd3d-4c60-8dca-571c71d4447a",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "56a872c8-7a1e-563d-8772-3978c2c5c220",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f634-435d-ab8d-e1168b375c69"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "94b6f269-fc9a-5bcd-af5b-2bdac69f276b",
|
||||
"objectUniversalIdentifier": "20202020-fff0-4b44-be82-bda313884400",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "011595e8-7524-5ec7-9fbc-4bd3c42d7d24",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f635-435d-ab8d-e1168b375c70"
|
||||
},
|
||||
{
|
||||
"name": "targetMyNote",
|
||||
"label": "MyNote",
|
||||
"description": "MyNote My note",
|
||||
"icon": "IconCheckbox",
|
||||
"isNullable": true,
|
||||
"universalSettings": {
|
||||
"relationType": "MANY_TO_ONE",
|
||||
"onDelete": "SET_NULL",
|
||||
"joinColumnName": "targetMyNoteId"
|
||||
},
|
||||
"universalIdentifier": "50da3cfa-dea5-5c9b-b1b7-cb615e1df4c3",
|
||||
"objectUniversalIdentifier": "20202020-5a9a-44e8-95df-771cd06d0fb1",
|
||||
"relationTargetFieldMetadataUniversalIdentifier": "dd734fa3-26c3-53dd-91aa-577c313e1fa4",
|
||||
"relationTargetObjectMetadataUniversalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000030",
|
||||
"type": "MORPH_RELATION",
|
||||
"morphId": "20202020-f636-435d-ab8d-e1168b375c71"
|
||||
}
|
||||
],
|
||||
"roles": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000040",
|
||||
"label": "My role",
|
||||
"description": "A simple root-level role",
|
||||
"canReadAllObjectRecords": true,
|
||||
"canUpdateAllObjectRecords": false,
|
||||
"canSoftDeleteAllObjectRecords": false,
|
||||
"canDestroyAllObjectRecords": false,
|
||||
"canUpdateAllSettings": false,
|
||||
"canBeAssignedToAgents": false,
|
||||
"canBeAssignedToUsers": true,
|
||||
"canBeAssignedToApiKeys": false
|
||||
}
|
||||
],
|
||||
"skills": [],
|
||||
"agents": [],
|
||||
"logicFunctions": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000010",
|
||||
"name": "my-function",
|
||||
"timeoutSeconds": 5,
|
||||
"httpRouteTriggerSettings": {
|
||||
"path": "/my-function",
|
||||
"httpMethod": "GET",
|
||||
"isAuthRequired": false
|
||||
},
|
||||
"toolInputSchema": {
|
||||
"type": "object",
|
||||
"properties": {}
|
||||
},
|
||||
"handlerName": "default.config.handler",
|
||||
"sourceHandlerPath": "my.function.ts",
|
||||
"builtHandlerPath": "my.function.mjs",
|
||||
"builtHandlerChecksum": "71f0af6b9dfeef884cc81ae75ca6ecb0"
|
||||
}
|
||||
],
|
||||
"frontComponents": [
|
||||
{
|
||||
"universalIdentifier": "e1e2e3e4-e5e6-4000-8000-000000000020",
|
||||
"name": "my-component",
|
||||
"description": "A root-level front component",
|
||||
"componentName": "MyComponent",
|
||||
"sourceComponentPath": "my.front-component.tsx",
|
||||
"builtComponentPath": "my.front-component.mjs",
|
||||
"builtComponentChecksum": "37b905c5467584f03fa5ab2c8a05bc88",
|
||||
"isHeadless": false
|
||||
}
|
||||
],
|
||||
"publicAssets": [],
|
||||
"views": [],
|
||||
"navigationMenuItems": [],
|
||||
"pageLayouts": []
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "minimal-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"auth:login": "twenty auth:login",
|
||||
"auth:logout": "twenty auth:logout",
|
||||
"auth:status": "twenty auth:status",
|
||||
"auth:switch": "twenty auth:switch",
|
||||
"auth:list": "twenty auth:list",
|
||||
"app:dev": "twenty app:dev",
|
||||
"entity:add": "twenty entity:add",
|
||||
"function:logs": "twenty function:logs",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"help": "twenty help",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "postcard-app",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2",
|
||||
"scripts": {
|
||||
"auth:login": "twenty auth:login",
|
||||
"auth:logout": "twenty auth:logout",
|
||||
"auth:status": "twenty auth:status",
|
||||
"auth:switch": "twenty auth:switch",
|
||||
"auth:list": "twenty auth:list",
|
||||
"app:dev": "twenty app:dev",
|
||||
"entity:add": "twenty entity:add",
|
||||
"function:logs": "twenty function:logs",
|
||||
"function:execute": "twenty function:execute",
|
||||
"app:uninstall": "twenty app:uninstall",
|
||||
"help": "twenty help",
|
||||
"lint": "oxlint -c .oxlintrc.json .",
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
"@types/node": "^24.7.2",
|
||||
"@types/react": "^19.0.2",
|
||||
"react": "^19.0.2",
|
||||
"oxlint": "^0.16.0"
|
||||
}
|
||||
}
|
||||
@@ -15,6 +15,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-standard-application/package.json /app/packages/twenty-standard-application/
|
||||
|
||||
# Install all dependencies
|
||||
RUN yarn && yarn cache clean && npx nx reset
|
||||
@@ -28,11 +29,13 @@ 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-standard-application /app/packages/twenty-standard-application
|
||||
COPY ./packages/twenty-server /app/packages/twenty-server
|
||||
|
||||
RUN npx nx build twenty-standard-application
|
||||
RUN npx nx run twenty-server:build
|
||||
|
||||
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-standard-application twenty-server
|
||||
|
||||
# Build the front
|
||||
FROM common-deps AS twenty-front-build
|
||||
|
||||
@@ -63,12 +63,6 @@ yarn twenty function:execute --preInstall
|
||||
# Execute the post-install function
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Build the app for distribution
|
||||
yarn twenty app:build
|
||||
|
||||
# Publish the app to npm or a Twenty server
|
||||
yarn twenty app:publish
|
||||
|
||||
# Uninstall the application from the current workspace
|
||||
yarn twenty app:uninstall
|
||||
|
||||
@@ -1230,113 +1224,6 @@ Key points:
|
||||
|
||||
Explore a minimal, end-to-end example that demonstrates objects, logic functions, front components, and multiple triggers [here](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
|
||||
|
||||
## Building your app
|
||||
|
||||
Once you've developed your app with `app:dev`, use `app:build` to compile it into a distributable package.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Build the app (output goes to .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Build and create a tarball (.tgz) for distribution
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
The build process:
|
||||
|
||||
1. **Parses and validates the manifest** — reads all `defineX()` entities from your source files and validates the manifest structure.
|
||||
2. **Compiles logic functions and front components** — bundles TypeScript sources into ESM `.mjs` files using esbuild.
|
||||
3. **Generates checksums** — computes MD5 hashes for each built file, stored in the manifest as `builtHandlerChecksum` / `builtComponentChecksum`.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| Option | Description |
|
||||
|--------|-------------|
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| Option | Description |
|
||||
|--------|-------------|
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
|-------------|----------------------|------------------|
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
- **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
- **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
- **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
- **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
- A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
- An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## Manual setup (without the scaffolder)
|
||||
|
||||
While we recommend using `create-twenty-app` for the best getting-started experience, you can also set up a project manually. Do not install the CLI globally. Instead, add `twenty-sdk` as a local dependency and wire a single script in your package.json:
|
||||
|
||||
@@ -64,12 +64,6 @@ yarn twenty function:execute --preInstall
|
||||
# نفّذ دالة ما بعد التثبيت
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# ابنِ التطبيق للتوزيع
|
||||
yarn twenty app:build
|
||||
|
||||
# انشر التطبيق إلى npm أو إلى خادم Twenty
|
||||
yarn twenty app:publish
|
||||
|
||||
# أزل تثبيت التطبيق من مساحة العمل الحالية
|
||||
yarn twenty app:uninstall
|
||||
|
||||
@@ -1246,113 +1240,6 @@ uploadFile(
|
||||
|
||||
استكشف مثالًا بسيطًا شاملًا من البداية إلى النهاية يوضح الكائنات والوظائف المنطقية والمكوّنات الأمامية ومشغّلات متعددة [هنا](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
|
||||
|
||||
## بناء تطبيقك
|
||||
|
||||
بمجرد أن تطوّر تطبيقك باستخدام `app:dev`، استخدم `app:build` لإنشاء حزمة قابلة للتوزيع منه.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# ابنِ التطبيق (الإخراج يذهب إلى .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# ابنِ وأنشئ ملف tarball (.tgz) للتوزيع
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
عملية البناء:
|
||||
|
||||
1. **يقوم بتحليل ملف البيان والتحقق من صحته** — يقرأ جميع الكيانات `defineX()` من ملفات المصدر لديك ويُتحقّق من بنية ملف البيان.
|
||||
2. **يُصرِّف دوال المنطق ومكوّنات الواجهة** — يُجمّع مصادر TypeScript إلى ملفات ESM `.mjs` باستخدام esbuild.
|
||||
3. **يولّد قيم التحقّق** — يحسب تجزئات MD5 لكل ملف مُبنًى، وتُخزَّن في ملف البيان كـ `builtHandlerChecksum` / `builtComponentChecksum`.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| الخيار | الوصف |
|
||||
| ----------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| الخيار | الوصف |
|
||||
| ----------------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## إعداد يدوي (بدون المهيئ)
|
||||
|
||||
بينما نوصي باستخدام `create-twenty-app` للحصول على أفضل تجربة للبدء، يمكنك أيضًا إعداد مشروع يدويًا. لا تثبّت CLI عالميًا. بدل ذلك، أضف `twenty-sdk` كاعتماد محلي واربط سكربتًا واحدًا في ملف package.json لديك:
|
||||
|
||||
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**وضع بيئي فقط:** إذا كنت قد ضبطت `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`، فأضف هذه المتغيرات إلى ملف `.env` الخاص بك بدلاً من ذلك.
|
||||
</Warning>
|
||||
|
||||
## الوظائف المنطقية ومفسر الشيفرة
|
||||
## الوظائف المنطقية
|
||||
|
||||
تدعم Twenty الوظائف المنطقية لعمليات سير العمل ومفسر الشيفرة لتحليل بيانات الذكاء الاصطناعي. كلاهما يقوم بتشغيل الشيفرة المقدمة من المستخدم ويتطلب تهيئة صريحة لأغراض الأمان.
|
||||
|
||||
### الإعدادات الافتراضية للأمان
|
||||
|
||||
**في بيئة الإنتاج (NODE_ENV=production):** يكون الإعداد الافتراضي لكل من الوظائف المنطقية ومفسر الشيفرة هو **معطل**. يجب تمكينهما صراحة باستخدام `LOGIC_FUNCTION_TYPE` و`CODE_INTERPRETER_TYPE` إذا كنت تحتاج إلى هذه الميزات.
|
||||
|
||||
**في بيئة التطوير (NODE_ENV=development):** يكون الإعداد الافتراضي لكليهما **LOCAL** لتسهيل التشغيل محلياً.
|
||||
تدعم Twenty الوظائف المنطقية لعمليات سير العمل والمنطق المخصص. يتم تكوين بيئة التنفيذ عبر متغير البيئة `SERVERLESS_TYPE`.
|
||||
|
||||
<Warning>
|
||||
**ملاحظة أمنية:** يقوم برنامج التشغيل المحلي (`LOGIC_FUNCTION_TYPE=LOCAL` أو `CODE_INTERPRETER_TYPE=LOCAL`) بتشغيل الشيفرة مباشرة على المضيف ضمن عملية Node.js من دون عزل. يجب استخدامه فقط للشيفرة الموثوقة أثناء التطوير. لعمليات النشر الإنتاجية التي تتعامل مع شيفرة غير موثوقة، استخدم `LOGIC_FUNCTION_TYPE=LAMBDA` أو `CODE_INTERPRETER_TYPE=E2B` (مع وضع الحماية)، أو اتركهما مُعطَّلَيْن.
|
||||
**ملاحظة أمنية:** يقوم برنامج التشغيل المحلي (`SERVERLESS_TYPE=LOCAL`) بتشغيل الشيفرة مباشرةً على المضيف ضمن عملية Node.js من دون عزل. يجب استخدامه فقط للشيفرة الموثوقة أثناء التطوير. بالنسبة لعمليات النشر الإنتاجية التي تتعامل مع شيفرة غير موثوق بها، نوصي بشدة باستخدام `SERVERLESS_TYPE=LAMBDA` أو `SERVERLESS_TYPE=DISABLED`.
|
||||
</Warning>
|
||||
|
||||
### الوظائف المنطقية - برامج التشغيل المتاحة
|
||||
### برامج التشغيل المتاحة
|
||||
|
||||
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
|
||||
| -------------- | ------------------------------ | ------------------------------- | ----------------------------- |
|
||||
| معطل | `LOGIC_FUNCTION_TYPE=DISABLED` | تعطيل الوظائف المنطقية بالكامل | غير متاح |
|
||||
| محلي | `LOGIC_FUNCTION_TYPE=LOCAL` | بيئات التطوير والبيئات الموثوقة | منخفض (من دون عزل) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | الإنتاج مع شيفرة غير موثوق بها | مرتفع (عزل على مستوى الأجهزة) |
|
||||
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
|
||||
| -------------- | -------------------------- | ------------------------------- | ----------------------------- |
|
||||
| معطل | `SERVERLESS_TYPE=DISABLED` | تعطيل الوظائف المنطقية بالكامل | غير متاح |
|
||||
| محلي | `SERVERLESS_TYPE=LOCAL` | بيئات التطوير والبيئات الموثوقة | منخفض (من دون عزل) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | الإنتاج مع شيفرة غير موثوق بها | مرتفع (عزل على مستوى الأجهزة) |
|
||||
|
||||
### الوظائف المنطقية - الإعداد الموصى به
|
||||
### التكوين الموصى به
|
||||
|
||||
**للتطوير:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**للإنتاج (AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**لتعطيل الوظائف المنطقية:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### مفسر الشيفرة - برامج التشغيل المتاحة
|
||||
|
||||
| برنامج التشغيل | متغير البيئة | حالة الاستخدام | مستوى الأمان |
|
||||
| -------------- | -------------------------------- | ------------------------------------- | ------------------------ |
|
||||
| معطل | `CODE_INTERPRETER_TYPE=DISABLED` | تعطيل تنفيذ الشيفرة بالذكاء الاصطناعي | غير متاح |
|
||||
| محلي | `CODE_INTERPRETER_TYPE=LOCAL` | للتطوير فقط | منخفض (من دون عزل) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | الإنتاج مع تنفيذ ضمن صندوق رمل معزول | مرتفعة (صندوق رمل معزول) |
|
||||
|
||||
<Note>
|
||||
عند استخدام `LOGIC_FUNCTION_TYPE=DISABLED` أو `CODE_INTERPRETER_TYPE=DISABLED`، سترجع أي محاولة للتنفيذ خطأً. يكون هذا مفيدًا إذا كنت ترغب في تشغيل Twenty من دون هذه الإمكانات.
|
||||
عند استخدام `SERVERLESS_TYPE=DISABLED`، ستؤدي أي محاولة لتنفيذ وظيفة منطقية إلى إرجاع خطأ. يكون هذا مفيدًا إذا كنت ترغب في تشغيل Twenty من دون إمكانات الوظائف المنطقية.
|
||||
</Note>
|
||||
|
||||
@@ -64,17 +64,11 @@ yarn twenty function:execute --preInstall
|
||||
# Die Post-Installationsfunktion ausführen
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Die Anwendung für die Verteilung erstellen
|
||||
yarn twenty app:build
|
||||
|
||||
# Die Anwendung auf npm oder einen Twenty-Server veröffentlichen
|
||||
yarn twenty app:publish
|
||||
|
||||
# Die Anwendung aus dem aktuellen Arbeitsbereich deinstallieren
|
||||
yarn twenty app:uninstall
|
||||
|
||||
# Hilfe zu Befehlen anzeigen
|
||||
yarn twenty help
|
||||
yarn twenty help},{
|
||||
```
|
||||
|
||||
Siehe auch: die CLI-Referenzseiten für [create-twenty-app](https://www.npmjs.com/package/create-twenty-app) und [twenty-sdk CLI](https://www.npmjs.com/package/twenty-sdk).
|
||||
@@ -1246,113 +1240,6 @@ Hauptpunkte:
|
||||
|
||||
Ein minimales End-to-End-Beispiel, das Objekte, Logikfunktionen, Frontend-Komponenten und mehrere Trigger demonstriert, finden Sie [hier](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
|
||||
|
||||
## Erstellen Ihrer App
|
||||
|
||||
Sobald Sie Ihre App mit `app:dev` entwickelt haben, verwenden Sie `app:build`, um sie in ein verteilbares Paket zu kompilieren.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Die App erstellen (Ausgabe nach .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Build ausführen und ein Tarball (.tgz) für die Verteilung erstellen
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
Der Build-Prozess:
|
||||
|
||||
1. **Parst und validiert das Manifest** — liest alle `defineX()`-Entitäten aus Ihren Quelldateien und validiert die Manifeststruktur.
|
||||
2. **Kompiliert Logikfunktionen und Front-Komponenten** — bündelt TypeScript-Quellcode in ESM `.mjs`-Dateien mit esbuild.
|
||||
3. **Erzeugt Checksummen** — berechnet MD5-Hashes für jede erstellte Datei, die im Manifest als `builtHandlerChecksum` / `builtComponentChecksum` gespeichert werden.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| Option | Beschreibung |
|
||||
| ----------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| Option | Beschreibung |
|
||||
| ----------------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## Manuelle Einrichtung (ohne Scaffolder)
|
||||
|
||||
Wir empfehlen zwar `create-twenty-app` für das beste Einstiegserlebnis, Sie können ein Projekt aber auch manuell einrichten. Installieren Sie die CLI nicht global. Fügen Sie stattdessen `twenty-sdk` als lokale Abhängigkeit hinzu und binden Sie ein einzelnes Skript in Ihrer package.json ein:
|
||||
|
||||
@@ -297,60 +297,46 @@ 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>
|
||||
|
||||
## Logikfunktionen & Code-Interpreter
|
||||
## Logikfunktionen
|
||||
|
||||
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.
|
||||
|
||||
### Sicherheits-Standardeinstellungen
|
||||
|
||||
**In Produktion (NODE_ENV=production):** Sowohl Logikfunktionen als auch der Code-Interpreter sind standardmäßig **deaktiviert**. Sie müssen sie, wenn Sie diese Funktionen benötigen, explizit mit `LOGIC_FUNCTION_TYPE` und `CODE_INTERPRETER_TYPE` aktivieren.
|
||||
|
||||
**In der Entwicklung (NODE_ENV=development):** Beide sind der Einfachheit halber beim lokalen Betrieb standardmäßig **LOCAL**.
|
||||
Twenty unterstützt Logikfunktionen für Workflows und benutzerdefinierte Logik. Die Ausführungsumgebung wird über die Umgebungsvariable `SERVERLESS_TYPE` konfiguriert.
|
||||
|
||||
<Warning>
|
||||
**Sicherheitshinweis:** Der lokale Treiber (`LOGIC_FUNCTION_TYPE=LOCAL` oder `CODE_INTERPRETER_TYPE=LOCAL`) führt Code ohne Sandbox direkt auf dem Host in einem Node.js-Prozess aus. Er sollte nur für vertrauenswürdigen Code in der Entwicklung verwendet werden. Für Produktionsbereitstellungen, die nicht vertrauenswürdigen Code verarbeiten, verwenden Sie `LOGIC_FUNCTION_TYPE=LAMBDA` oder `CODE_INTERPRETER_TYPE=E2B` (mit Sandbox-Isolierung), oder lassen Sie sie deaktiviert.
|
||||
**Sicherheitshinweis:** Der lokale Treiber (`SERVERLESS_TYPE=LOCAL`) führt Code ohne Sandbox direkt auf dem Host in einem Node.js-Prozess aus. Er sollte nur für vertrauenswürdigen Code in der Entwicklung verwendet werden. Für Produktivbereitstellungen, die nicht vertrauenswürdigen Code verarbeiten, empfehlen wir nachdrücklich, `SERVERLESS_TYPE=LAMBDA` oder `SERVERLESS_TYPE=DISABLED` zu verwenden.
|
||||
</Warning>
|
||||
|
||||
### Logikfunktionen - Verfügbare Treiber
|
||||
### Verfügbare Treiber
|
||||
|
||||
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
|
||||
| ----------- | ------------------------------ | -------------------------------------------------- | ---------------------------------- |
|
||||
| Deaktiviert | `LOGIC_FUNCTION_TYPE=DISABLED` | Logikfunktionen vollständig deaktivieren | N/A |
|
||||
| Lokal | `LOGIC_FUNCTION_TYPE=LOCAL` | Entwicklung und vertrauenswürdige Umgebungen | Niedrig (keine Sandbox) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produktivbetrieb mit nicht vertrauenswürdigem Code | Hoch (Isolation auf Hardwareebene) |
|
||||
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
|
||||
| ----------- | -------------------------- | -------------------------------------------------- | ---------------------------------- |
|
||||
| Deaktiviert | `SERVERLESS_TYPE=DISABLED` | Logikfunktionen vollständig deaktivieren | N/A |
|
||||
| Lokal | `SERVERLESS_TYPE=LOCAL` | Entwicklung und vertrauenswürdige Umgebungen | Niedrig (keine Sandbox) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produktivbetrieb mit nicht vertrauenswürdigem Code | Hoch (Isolation auf Hardwareebene) |
|
||||
|
||||
### Logikfunktionen - Empfohlene Konfiguration
|
||||
### Empfohlene Konfiguration
|
||||
|
||||
**Für die Entwicklung:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**Für den Produktivbetrieb (AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Zum Deaktivieren von Logikfunktionen:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### Code-Interpreter - Verfügbare Treiber
|
||||
|
||||
| Treiber | Umgebungsvariable | Anwendungsfall | Sicherheitsstufe |
|
||||
| ----------- | -------------------------------- | ------------------------------------------ | ------------------------ |
|
||||
| Deaktiviert | `CODE_INTERPRETER_TYPE=DISABLED` | KI-Codeausführung deaktivieren | N/A |
|
||||
| Lokal | `CODE_INTERPRETER_TYPE=LOCAL` | Nur für die Entwicklung | Niedrig (keine Sandbox) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produktion mit Ausführung in einer Sandbox | Hoch (isolierte Sandbox) |
|
||||
|
||||
<Note>
|
||||
Bei Verwendung von `LOGIC_FUNCTION_TYPE=DISABLED` oder `CODE_INTERPRETER_TYPE=DISABLED` führt jeder Ausführungsversuch zu einem Fehler. Dies ist nützlich, wenn Sie Twenty ohne diese Funktionen betreiben möchten.
|
||||
Bei Verwendung von `SERVERLESS_TYPE=DISABLED` führt jeder Versuch, eine Logikfunktion auszuführen, zu einem Fehler. Dies ist nützlich, wenn Sie Twenty ohne Unterstützung für Logikfunktionen betreiben möchten.
|
||||
</Note>
|
||||
|
||||
@@ -64,12 +64,6 @@ yarn twenty function:execute --preInstall
|
||||
# Esegui la funzione post-installazione
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Compila l'app per la distribuzione
|
||||
yarn twenty app:build
|
||||
|
||||
# Pubblica l'app su npm o su un server Twenty
|
||||
yarn twenty app:publish
|
||||
|
||||
# Disinstalla l'applicazione dallo spazio di lavoro corrente
|
||||
yarn twenty app:uninstall
|
||||
|
||||
@@ -1246,113 +1240,6 @@ Punti chiave:
|
||||
|
||||
Esplora un esempio minimale end-to-end che dimostra oggetti, funzioni logiche, componenti front-end e trigger multipli [qui](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
|
||||
|
||||
## Compilazione della tua app
|
||||
|
||||
Una volta che hai sviluppato la tua app con `app:dev`, usa `app:build` per compilarla in un pacchetto distribuibile.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Compila l'app (l'output va in .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Compila e crea un tarball (.tgz) per la distribuzione
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
Il processo di compilazione:
|
||||
|
||||
1. **Analizza e convalida il manifest** — legge tutte le entità `defineX()` dai tuoi file sorgente e convalida la struttura del manifest.
|
||||
2. **Compila le funzioni di logica e i componenti front-end** — raggruppa i sorgenti TypeScript in file ESM `.mjs` usando esbuild.
|
||||
3. **Genera i checksum** — calcola gli hash MD5 per ogni file compilato, memorizzati nel manifest come `builtHandlerChecksum` / `builtComponentChecksum`.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| Opzione | Descrizione |
|
||||
| ----------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| Opzione | Descrizione |
|
||||
| ----------------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## Configurazione manuale (senza lo scaffolder)
|
||||
|
||||
Sebbene consigliamo di utilizzare `create-twenty-app` per la migliore esperienza iniziale, puoi anche configurare un progetto manualmente. Non installare la CLI globalmente. Invece, aggiungi `twenty-sdk` come dipendenza locale e collega un unico script nel tuo package.json:
|
||||
|
||||
@@ -296,60 +296,46 @@ 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>
|
||||
|
||||
## Funzioni logiche & interprete del codice
|
||||
## Funzioni logiche
|
||||
|
||||
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.
|
||||
|
||||
### Impostazioni di sicurezza predefinite
|
||||
|
||||
**In produzione (NODE_ENV=production):** Sia le funzioni logiche sia l'interprete del codice hanno come impostazione predefinita **Disabilitato**. È necessario abilitarli esplicitamente con `LOGIC_FUNCTION_TYPE` e `CODE_INTERPRETER_TYPE` se queste funzionalità sono necessarie.
|
||||
|
||||
**In sviluppo (NODE_ENV=development):** Entrambi sono impostati su **LOCAL** per comodità quando vengono eseguiti in locale.
|
||||
Twenty supporta le funzioni logiche per i workflow e la logica personalizzata. L'ambiente di esecuzione è configurato tramite la variabile di ambiente `SERVERLESS_TYPE`.
|
||||
|
||||
<Warning>
|
||||
**Avviso di sicurezza:** Il driver locale (`LOGIC_FUNCTION_TYPE=LOCAL` o `CODE_INTERPRETER_TYPE=LOCAL`) esegue il codice direttamente sull'host in un processo Node.js senza sandboxing. Dovrebbe essere utilizzato solo per codice attendibile in fase di sviluppo. Per le distribuzioni in produzione che gestiscono codice non affidabile, usa `LOGIC_FUNCTION_TYPE=LAMBDA` o `CODE_INTERPRETER_TYPE=E2B` (con sandboxing), oppure lasciali disabilitati.
|
||||
**Avviso di sicurezza:** Il driver locale (`SERVERLESS_TYPE=LOCAL`) esegue il codice direttamente sull'host in un processo Node.js senza sandboxing. Dovrebbe essere utilizzato solo per codice attendibile in fase di sviluppo. Per le distribuzioni in produzione che gestiscono codice non attendibile, consigliamo vivamente di usare `SERVERLESS_TYPE=LAMBDA` o `SERVERLESS_TYPE=DISABLED`.
|
||||
</Warning>
|
||||
|
||||
### Funzioni logiche - Driver disponibili
|
||||
### Driver disponibili
|
||||
|
||||
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
|
||||
| ------------ | ------------------------------ | -------------------------------------------- | ------------------------------------ |
|
||||
| Disabilitato | `LOGIC_FUNCTION_TYPE=DISABLED` | Disabilita completamente le funzioni logiche | N/A |
|
||||
| Locale | `LOGIC_FUNCTION_TYPE=LOCAL` | Ambienti di sviluppo e attendibili | Basso (nessuna sandbox) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produzione con codice non attendibile | Alto (isolamento a livello hardware) |
|
||||
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
|
||||
| ------------ | -------------------------- | -------------------------------------------- | ------------------------------------ |
|
||||
| Disabilitato | `SERVERLESS_TYPE=DISABLED` | Disabilita completamente le funzioni logiche | N/A |
|
||||
| Locale | `SERVERLESS_TYPE=LOCAL` | Ambienti di sviluppo e attendibili | Basso (nessuna sandbox) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produzione con codice non attendibile | Alto (isolamento a livello hardware) |
|
||||
|
||||
### Funzioni logiche - Configurazione consigliata
|
||||
### Configurazione consigliata
|
||||
|
||||
**Per lo sviluppo:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**Per la produzione (AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Per disabilitare le funzioni logiche:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### Interprete del codice - Driver disponibili
|
||||
|
||||
| Driver | Variabile di ambiente | Caso d'uso | Livello di sicurezza |
|
||||
| ------------ | -------------------------------- | ------------------------------------- | ----------------------- |
|
||||
| Disabilitato | `CODE_INTERPRETER_TYPE=DISABLED` | Disabilita l'esecuzione del codice IA | N/A |
|
||||
| Locale | `CODE_INTERPRETER_TYPE=LOCAL` | Solo per lo sviluppo | Basso (nessuna sandbox) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produzione con esecuzione in sandbox | Alta (sandbox isolata) |
|
||||
|
||||
<Note>
|
||||
Quando si utilizza `LOGIC_FUNCTION_TYPE=DISABLED` o `CODE_INTERPRETER_TYPE=DISABLED`, qualsiasi tentativo di esecuzione restituirà un errore. Ciò è utile se si desidera eseguire Twenty senza queste funzionalità.
|
||||
Quando si utilizza `SERVERLESS_TYPE=DISABLED`, qualsiasi tentativo di eseguire una funzione logica restituirà un errore. Ciò è utile se si desidera eseguire Twenty senza il supporto per le funzioni logiche.
|
||||
</Note>
|
||||
|
||||
@@ -49,31 +49,25 @@ npx create-twenty-app@latest my-app --minimal
|
||||
A partir daqui você pode:
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Adicionar uma nova entidade à sua aplicação (assistido)
|
||||
# Add a new entity to your application (guided)
|
||||
yarn twenty entity:add
|
||||
|
||||
# Acompanhar os logs das funções da sua aplicação
|
||||
# Watch your application's function logs
|
||||
yarn twenty function:logs
|
||||
|
||||
# Executar uma função pelo nome
|
||||
# Execute a function by name
|
||||
yarn twenty function:execute -n my-function -p '{"name": "test"}'
|
||||
|
||||
# Executar a função de pré-instalação
|
||||
# Execute the pre-install function
|
||||
yarn twenty function:execute --preInstall
|
||||
|
||||
# Executar a função de pós-instalação
|
||||
# Execute the post-install function
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Compilar a aplicação para distribuição
|
||||
yarn twenty app:build
|
||||
|
||||
# Publicar a aplicação no npm ou em um servidor Twenty
|
||||
yarn twenty app:publish
|
||||
|
||||
# Desinstalar a aplicação do espaço de trabalho atual
|
||||
# Uninstall the application from the current workspace
|
||||
yarn twenty app:uninstall
|
||||
|
||||
# Exibir a ajuda dos comandos
|
||||
# Display commands' help
|
||||
yarn twenty help
|
||||
```
|
||||
|
||||
@@ -1247,113 +1241,6 @@ Pontos-chave:
|
||||
|
||||
Explore um exemplo mínimo de ponta a ponta que demonstra objetos, funções de lógica, componentes de front-end e vários gatilhos [aqui](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
|
||||
|
||||
## Compilando seu app
|
||||
|
||||
Depois de desenvolver seu app com `app:dev`, use `app:build` para compilá-lo em um pacote distribuível.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Compilar o app (a saída vai para .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Compilar e criar um tarball (.tgz) para distribuição
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
O processo de build:
|
||||
|
||||
1. **Analisa e valida o manifesto** — lê todas as entidades `defineX()` dos seus arquivos de código-fonte e valida a estrutura do manifesto.
|
||||
2. **Compila funções de lógica e componentes de front-end** — empacota o código-fonte TypeScript em arquivos ESM `.mjs` usando o esbuild.
|
||||
3. **Gera checksums** — calcula hashes MD5 para cada arquivo gerado, armazenados no manifesto como `builtHandlerChecksum` / `builtComponentChecksum`.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| Opção | Descrição |
|
||||
| ----------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| Opção | Descrição |
|
||||
| ----------------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## Configuração manual (sem o gerador)
|
||||
|
||||
Embora recomendemos usar `create-twenty-app` para a melhor experiência inicial, você também pode configurar um projeto manualmente. Não instale a CLI globalmente. Em vez disso, adicione `twenty-sdk` como uma dependência local e configure um único script no seu package.json:
|
||||
|
||||
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Modo somente ambiente:** Se você definir `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, adicione estas variáveis ao seu arquivo `.env`.
|
||||
</Warning>
|
||||
|
||||
## Funções lógicas e interpretador de código
|
||||
## Funções lógicas
|
||||
|
||||
O Twenty oferece suporte a funções lógicas para fluxos de trabalho e ao interpretador de código para análise de dados com IA. Ambos executam código fornecido pelo usuário e exigem configuração explícita por motivos de segurança.
|
||||
|
||||
### Padrões de segurança
|
||||
|
||||
**Em produção (NODE_ENV=production):** Tanto as funções lógicas quanto o interpretador de código têm como padrão **Desativado**. Você deve habilitá-los explicitamente com `LOGIC_FUNCTION_TYPE` e `CODE_INTERPRETER_TYPE` se precisar desses recursos.
|
||||
|
||||
**Em desenvolvimento (NODE_ENV=development):** Ambos têm como padrão **LOCAL** por conveniência ao executar localmente.
|
||||
O Twenty oferece suporte a funções lógicas para fluxos de trabalho e lógica personalizada. O ambiente de execução é configurado por meio da variável de ambiente `SERVERLESS_TYPE`.
|
||||
|
||||
<Warning>
|
||||
**Aviso de segurança:** O driver local (`LOGIC_FUNCTION_TYPE=LOCAL` ou `CODE_INTERPRETER_TYPE=LOCAL`) executa código diretamente no host em um processo Node.js sem sandbox. Deve ser usado apenas para código confiável em desenvolvimento. Para implantações de produção que lidam com código não confiável, use `LOGIC_FUNCTION_TYPE=LAMBDA` ou `CODE_INTERPRETER_TYPE=E2B` (com sandbox), ou mantenha-os desativados.
|
||||
**Aviso de segurança:** O driver local (`SERVERLESS_TYPE=LOCAL`) executa código diretamente no host em um processo Node.js sem sandbox. Deve ser usado apenas para código confiável em desenvolvimento. Para implantações de produção que lidam com código não confiável, recomendamos fortemente usar `SERVERLESS_TYPE=LAMBDA` ou `SERVERLESS_TYPE=DISABLED`.
|
||||
</Warning>
|
||||
|
||||
### Funções lógicas - Drivers disponíveis
|
||||
### Drivers disponíveis
|
||||
|
||||
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
|
||||
| ---------- | ------------------------------ | ------------------------------------------ | -------------------------------------- |
|
||||
| Desativado | `LOGIC_FUNCTION_TYPE=DISABLED` | Desativar completamente as funções lógicas | N/A |
|
||||
| Local | `LOGIC_FUNCTION_TYPE=LOCAL` | Desenvolvimento e ambientes confiáveis | Baixo (sem sandbox) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Produção com código não confiável | Alto (isolamento em nível de hardware) |
|
||||
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
|
||||
| ---------- | -------------------------- | ------------------------------------------ | -------------------------------------- |
|
||||
| Desativado | `SERVERLESS_TYPE=DISABLED` | Desativar completamente as funções lógicas | N/A |
|
||||
| Local | `SERVERLESS_TYPE=LOCAL` | Desenvolvimento e ambientes confiáveis | Baixo (sem sandbox) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Produção com código não confiável | Alto (isolamento em nível de hardware) |
|
||||
|
||||
### Funções lógicas - Configuração recomendada
|
||||
### Configuração recomendada
|
||||
|
||||
**Para desenvolvimento:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**Para produção (AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Para desativar as funções lógicas:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### Interpretador de código - Drivers disponíveis
|
||||
|
||||
| Driver | Variável de ambiente | Caso de uso | Nível de segurança |
|
||||
| ---------- | -------------------------------- | ------------------------------------ | ---------------------- |
|
||||
| Desativado | `CODE_INTERPRETER_TYPE=DISABLED` | Desativar a execução de código de IA | N/A |
|
||||
| Local | `CODE_INTERPRETER_TYPE=LOCAL` | Apenas para desenvolvimento | Baixo (sem sandbox) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Produção com execução em sandbox | Alto (sandbox isolado) |
|
||||
|
||||
<Note>
|
||||
Ao usar `LOGIC_FUNCTION_TYPE=DISABLED` ou `CODE_INTERPRETER_TYPE=DISABLED`, qualquer tentativa de execução retornará um erro. Isso é útil se você quiser executar o Twenty sem esses recursos.
|
||||
Ao usar `SERVERLESS_TYPE=DISABLED`, qualquer tentativa de executar uma função lógica retornará um erro. Isso é útil se você quiser executar o Twenty sem recursos de funções lógicas.
|
||||
</Note>
|
||||
|
||||
@@ -49,32 +49,26 @@ npx create-twenty-app@latest my-app --minimal
|
||||
De aici puteți:
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Add a new entity to your application (guided)
|
||||
# Adaugă o entitate nouă în aplicația ta (ghidat)
|
||||
yarn twenty entity:add
|
||||
|
||||
# Watch your application's function logs
|
||||
# Urmărește jurnalele funcțiilor aplicației tale
|
||||
yarn twenty function:logs
|
||||
|
||||
# Execute a function by name
|
||||
# Execută o funcție după nume
|
||||
yarn twenty function:execute -n my-function -p '{"name": "test"}'
|
||||
|
||||
# Execute the pre-install function
|
||||
# Execută funcția de pre-instalare
|
||||
yarn twenty function:execute --preInstall
|
||||
|
||||
# Execute the post-install function
|
||||
# Execută funcția post-instalare
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Build the app for distribution
|
||||
yarn twenty app:build
|
||||
|
||||
# Publish the app to npm or a Twenty server
|
||||
yarn twenty app:publish
|
||||
|
||||
# Uninstall the application from the current workspace
|
||||
# Dezinstalează aplicația din spațiul de lucru curent
|
||||
yarn twenty app:uninstall
|
||||
|
||||
# Display commands' help
|
||||
yarn twenty help
|
||||
# Afișează ajutorul pentru comenzi
|
||||
yarn twenty help},{
|
||||
```
|
||||
|
||||
Consultați și: paginile de referință CLI pentru [create-twenty-app](https://www.npmjs.com/package/create-twenty-app) și [twenty-sdk CLI](https://www.npmjs.com/package/twenty-sdk).
|
||||
@@ -1246,113 +1240,6 @@ Puncte cheie:
|
||||
|
||||
Explorați un exemplu minim, cap la cap, care demonstrează obiecte, funcții de logică, componente Front și declanșatoare multiple [aici](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
|
||||
|
||||
## Building your app
|
||||
|
||||
Once you've developed your app with `app:dev`, use `app:build` to compile it into a distributable package.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Build the app (output goes to .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Build and create a tarball (.tgz) for distribution
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
The build process:
|
||||
|
||||
1. **Parses and validates the manifest** — reads all `defineX()` entities from your source files and validates the manifest structure.
|
||||
2. **Compiles logic functions and front components** — bundles TypeScript sources into ESM `.mjs` files using esbuild.
|
||||
3. **Generates checksums** — computes MD5 hashes for each built file, stored in the manifest as `builtHandlerChecksum` / `builtComponentChecksum`.
|
||||
4. **Generează clientul API tipizat** — examinează schema GraphQL și generează clienți tipizați `CoreApiClient` și `MetadataApiClient`.
|
||||
5. **Rulează o verificare a tipurilor TypeScript** — rulează `tsc --noEmit` pentru a detecta erorile de tip înainte de publicare.
|
||||
6. **Reconstruiește cu clientul generat** — efectuează o a doua trecere de compilare astfel încât tipurile clientului generat să fie incluse.
|
||||
7. **Creează opțional un tarball** — dacă se trece `--tarball`, rulează `npm pack` pentru a crea un fișier `.tgz` gata pentru distribuire.
|
||||
|
||||
Rezultatul build-ului din `.twenty/output/` conține:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest cu sume de control pentru toate fișierele generate
|
||||
├── package.json # Copiat din rădăcina aplicației
|
||||
├── yarn.lock # Copiat din rădăcina aplicației
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Fișiere .mjs de funcții de logică compilate
|
||||
│ └── front-components/ # Fișiere .mjs de componente front-end compilate
|
||||
├── public/ # Resurse statice (dacă există)
|
||||
└── my-app-1.0.0.tgz # Doar cu opțiunea --tarball
|
||||
```
|
||||
|
||||
| Opțiune | Descriere |
|
||||
| ----------- | -------------------------------------------------------------- |
|
||||
| `[appPath]` | Calea către directorul aplicației (implicit directorul curent) |
|
||||
| `--tarball` | De asemenea, împachetează rezultatul într-un tarball `.tgz` |
|
||||
|
||||
## Publicarea aplicației
|
||||
|
||||
Folosește `app:publish` pentru a distribui aplicația — fie în registrul npm, fie direct pe un server Twenty.
|
||||
|
||||
### Publicare pe npm (implicit)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publicare pe npm (necesită autentificare npm)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publicare cu un dist-tag (de ex. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
Aceasta construiește aplicația și rulează `npm publish` din directorul `.twenty/output/`. Pachetul publicat poate fi apoi instalat din marketplace-ul Twenty de către orice spațiu de lucru.
|
||||
|
||||
### Publicare pe un server Twenty
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publicare direct pe un server Twenty
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
Aceasta construiește aplicația cu un tarball, o încarcă pe server prin mutația GraphQL `uploadAppTarball` și declanșează instalarea într-un singur pas. Acest lucru este util pentru implementări private sau pentru testare pe un server specific.
|
||||
|
||||
| Opțiune | Descriere |
|
||||
| ----------------- | -------------------------------------------------------------------- |
|
||||
| `[appPath]` | Calea către directorul aplicației (implicit directorul curent) |
|
||||
| `--server <url>` | Publică pe un server Twenty în loc de npm |
|
||||
| `--token <token>` | Jeton de autentificare pentru serverul țintă |
|
||||
| `--tag <tag>` | npm dist-tag (de ex. `beta`, `next`) — doar pentru publicarea pe npm |
|
||||
|
||||
## Înregistrarea aplicației
|
||||
|
||||
Înainte ca o aplicație să poată fi instalată într-un spațiu de lucru, aceasta trebuie să fie **înregistrată**. O înregistrare este o înregistrare de metadate care descrie de unde provine aplicația și cum se autentifică. Acest lucru este gestionat automat de CLI în cele mai multe cazuri.
|
||||
|
||||
### Tipuri de sursă
|
||||
|
||||
Fiecare înregistrare are un **tip de sursă** care determină modul în care fișierele aplicației sunt preluate în timpul instalării:
|
||||
|
||||
| Tip de sursă | Cum sunt preluate fișierele | Caz de utilizare tipic |
|
||||
| ------------ | ---------------------------------------------------------------------------------------- | ----------------------------------------- |
|
||||
| `LOCAL` | Fișierele sunt sincronizate în timp real de către watcher-ul CLI — instalarea este omisă | Dezvoltare cu `app:dev` |
|
||||
| `NPM` | Obținute din registrul npm prin câmpul `sourcePackage` | Aplicații publicate pe npm |
|
||||
| `TARBALL` | Extrase dintr-un fișier `.tgz` încărcat, stocat pe server | Aplicații private publicate cu `--server` |
|
||||
|
||||
### Cum are loc înregistrarea
|
||||
|
||||
* **`app:dev`** — creează automat o înregistrare `LOCAL` prima dată când rulezi modul de dezvoltare pentru un spațiu de lucru.
|
||||
* **`app:publish --server`** — încarcă un tarball și creează (sau actualizează) o înregistrare `TARBALL`, apoi instalează aplicația.
|
||||
* **marketplace-ul npm** — înregistrările `NPM` sunt create când aplicațiile sunt sincronizate din registrul npm în catalogul marketplace-ului Twenty.
|
||||
* **API GraphQL** — poți de asemenea să creezi înregistrări programatic prin mutația `createApplicationRegistration`.
|
||||
|
||||
### Înregistrare vs instalare
|
||||
|
||||
**Înregistrarea** și **instalarea** sunt concepte separate:
|
||||
|
||||
* O **înregistrare** (`ApplicationRegistration`) este o înregistrare globală de metadate care descrie aplicația: numele ei, tipul de sursă, acreditările OAuth și statutul listării în marketplace. Există independent de orice spațiu de lucru.
|
||||
* O **instalare** (`Application`) este o instanță per spațiu de lucru. Când un utilizator instalează o aplicație, Twenty rezolvă pachetul din sursa înregistrării, scrie fișierele compilate în stocare și sincronizează manifestul (creând obiecte, câmpuri, funcții de logică etc.) în acel spațiu de lucru.
|
||||
|
||||
O singură înregistrare poate fi instalată în multe spații de lucru. Fiecare spațiu de lucru primește propria copie a fișierelor și a modelului de date al aplicației.
|
||||
|
||||
### Acreditări OAuth
|
||||
|
||||
Fiecare înregistrare include acreditări OAuth (`oAuthClientId` și `oAuthClientSecret`) generate la momentul creării. Acestea sunt folosite de aplicație pentru a autentifica cererile API în numele utilizatorilor. Secretul clientului este returnat **o singură dată** la creare — păstrează-l în siguranță. Îl poți roti ulterior prin mutația `rotateApplicationRegistrationClientSecret`.
|
||||
|
||||
## Configurare manuală (fără generator)
|
||||
|
||||
Deși recomandăm utilizarea `create-twenty-app` pentru cea mai bună experiență de început, puteți configura și un proiect manual. Nu instalați CLI-ul global. În schimb, adăugați `twenty-sdk` ca dependență locală și conectați un singur script în package.json-ul dvs.:
|
||||
|
||||
@@ -297,60 +297,46 @@ 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>
|
||||
|
||||
## Funcții logice și interpretor de cod
|
||||
## Funcții logice
|
||||
|
||||
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.
|
||||
|
||||
### Valori implicite de securitate
|
||||
|
||||
**În producție (NODE_ENV=production):** Atât funcțiile logice, cât și interpretorul de cod au implicit valoarea **Dezactivat**. Trebuie să le activezi explicit cu `LOGIC_FUNCTION_TYPE` și `CODE_INTERPRETER_TYPE` dacă ai nevoie de aceste funcționalități.
|
||||
|
||||
**În dezvoltare (NODE_ENV=development):** Ambele au implicit valoarea **LOCAL** pentru comoditate când rulezi local.
|
||||
Twenty acceptă funcții logice pentru fluxuri de lucru și logică personalizată. Mediul de execuție este configurat prin variabila de mediu `SERVERLESS_TYPE`.
|
||||
|
||||
<Warning>
|
||||
**Atenționare de securitate:** Driverul local (`LOGIC_FUNCTION_TYPE=LOCAL` sau `CODE_INTERPRETER_TYPE=LOCAL`) rulează codul direct pe gazdă într-un proces Node.js, fără sandboxing. Ar trebui utilizat doar pentru cod de încredere, în dezvoltare. Pentru implementări în producție care gestionează cod neverificat, folosiți `LOGIC_FUNCTION_TYPE=LAMBDA` sau `CODE_INTERPRETER_TYPE=E2B` (cu sandboxing) ori păstrați-le dezactivate.
|
||||
**Atenționare de securitate:** Driverul local (`SERVERLESS_TYPE=LOCAL`) rulează codul direct pe gazdă într-un proces Node.js, fără sandboxing. Ar trebui utilizat doar pentru cod de încredere, în dezvoltare. Pentru implementări de producție care gestionează cod neverificat, recomandăm cu tărie utilizarea `SERVERLESS_TYPE=LAMBDA` sau `SERVERLESS_TYPE=DISABLED`.
|
||||
</Warning>
|
||||
|
||||
### Funcții logice - Drivere disponibile
|
||||
### Drivere disponibile
|
||||
|
||||
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
|
||||
| ---------- | ------------------------------ | ------------------------------------- | -------------------------------------- |
|
||||
| Dezactivat | `LOGIC_FUNCTION_TYPE=DISABLED` | Dezactivează complet funcțiile logice | N/A |
|
||||
| Local | `LOGIC_FUNCTION_TYPE=LOCAL` | Dezvoltare și medii de încredere | Scăzut (fără sandboxing) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Producție cu cod neverificat | Ridicat (izolare la nivel de hardware) |
|
||||
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
|
||||
| ---------- | -------------------------- | ------------------------------------- | -------------------------------------- |
|
||||
| Dezactivat | `SERVERLESS_TYPE=DISABLED` | Dezactivează complet funcțiile logice | N/A |
|
||||
| Local | `SERVERLESS_TYPE=LOCAL` | Dezvoltare și medii de încredere | Scăzut (fără sandboxing) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Producție cu cod neverificat | Ridicat (izolare la nivel de hardware) |
|
||||
|
||||
### Funcții logice - Configurare recomandată
|
||||
### Configurație recomandată
|
||||
|
||||
**Pentru dezvoltare:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**Pentru producție (AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Pentru a dezactiva funcțiile logice:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### Interpretor de cod - Drivere disponibile
|
||||
|
||||
| Driver | Variabilă de mediu | Caz de utilizare | Nivel de securitate |
|
||||
| ---------- | -------------------------------- | ---------------------------------------- | ------------------------ |
|
||||
| Dezactivat | `CODE_INTERPRETER_TYPE=DISABLED` | Dezactivați execuția codului de către AI | N/A |
|
||||
| Local | `CODE_INTERPRETER_TYPE=LOCAL` | Doar pentru dezvoltare | Scăzut (fără sandboxing) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Producție cu execuție în sandbox | Ridicat (sandbox izolat) |
|
||||
|
||||
<Note>
|
||||
Când utilizați `LOGIC_FUNCTION_TYPE=DISABLED` sau `CODE_INTERPRETER_TYPE=DISABLED`, orice încercare de execuție va returna o eroare. Acest lucru este util dacă doriți să rulați Twenty fără aceste capabilități.
|
||||
Când se utilizează `SERVERLESS_TYPE=DISABLED`, orice încercare de a executa o funcție logică va returna o eroare. Acest lucru este util dacă doriți să rulați Twenty fără capabilități de funcții logice.
|
||||
</Note>
|
||||
|
||||
@@ -64,12 +64,6 @@ yarn twenty function:execute --preInstall
|
||||
# Выполнить послеустановочную функцию
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Собрать приложение для распространения
|
||||
yarn twenty app:build
|
||||
|
||||
# Опубликовать приложение в npm или на сервер Twenty
|
||||
yarn twenty app:publish
|
||||
|
||||
# Удалить приложение из текущего рабочего пространства
|
||||
yarn twenty app:uninstall
|
||||
|
||||
@@ -1246,113 +1240,6 @@ uploadFile(
|
||||
|
||||
Ознакомьтесь с минимальным сквозным примером, демонстрирующим объекты, логические функции, фронт-компоненты и несколько триггеров, [здесь](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world):
|
||||
|
||||
## Сборка вашего приложения
|
||||
|
||||
После того как вы разработали приложение с помощью `app:dev`, используйте `app:build`, чтобы скомпилировать его в распространяемый пакет.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Собрать приложение (результат сохраняется в .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Собрать и создать tarball (.tgz) для распространения
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
Процесс сборки:
|
||||
|
||||
1. **Разбирает и проверяет манифест** — читает все сущности `defineX()` из ваших исходных файлов и проверяет структуру манифеста.
|
||||
2. **Компилирует логические функции и фронтенд-компоненты** — упаковывает исходники TypeScript в ESM-файлы `.mjs` с помощью esbuild.
|
||||
3. **Генерирует контрольные суммы** — вычисляет хэши MD5 для каждого собранного файла, сохраняемые в манифесте как `builtHandlerChecksum` / `builtComponentChecksum`.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| Вариант | Описание |
|
||||
| ----------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| Вариант | Описание |
|
||||
| ----------------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## Ручная настройка (без генератора)
|
||||
|
||||
Хотя мы рекомендуем использовать `create-twenty-app` для наилучшего старта, вы также можете настроить проект вручную. Не устанавливайте CLI глобально. Вместо этого добавьте `twenty-sdk` как локальную зависимость и настройте один скрипт в вашем package.json:
|
||||
|
||||
@@ -296,60 +296,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**Режим только для среды:** если вы установили `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`, добавьте эти переменные в свой `.env` файл вместо этого.
|
||||
</Warning>
|
||||
|
||||
## Логические функции и интерпретатор кода
|
||||
## Логические функции
|
||||
|
||||
Twenty поддерживает логические функции для рабочих процессов и интерпретатор кода для анализа данных ИИ. Оба запускают предоставленный пользователем код и требуют явной настройки в целях безопасности.
|
||||
|
||||
### Настройки безопасности по умолчанию
|
||||
|
||||
**В продакшене (NODE_ENV=production):** логические функции и интерпретатор кода по умолчанию — **Отключено**. Если вам нужны эти функции, вы должны явно включить их с помощью `LOGIC_FUNCTION_TYPE` и `CODE_INTERPRETER_TYPE`.
|
||||
|
||||
**В разработке (NODE_ENV=development):** оба по умолчанию — **LOCAL** для удобства при локальном запуске.
|
||||
Twenty поддерживает логические функции для рабочих процессов и пользовательской логики. Среда выполнения настраивается через переменную окружения `SERVERLESS_TYPE`.
|
||||
|
||||
<Warning>
|
||||
**Уведомление о безопасности:** локальный драйвер (`LOGIC_FUNCTION_TYPE=LOCAL` или `CODE_INTERPRETER_TYPE=LOCAL`) выполняет код напрямую на хосте в процессе Node.js без изоляции. Его следует использовать только для доверенного кода в разработке. Для рабочих развёртываний, обрабатывающих недоверенный код, используйте `LOGIC_FUNCTION_TYPE=LAMBDA` или `CODE_INTERPRETER_TYPE=E2B` (с песочницей) либо оставьте их отключёнными.
|
||||
**Уведомление о безопасности:** локальный драйвер (`SERVERLESS_TYPE=LOCAL`) выполняет код напрямую на хосте в процессе Node.js без изоляции. Его следует использовать только для доверенного кода в разработке. Для промышленных развертываний, обрабатывающих недоверенный код, настоятельно рекомендуем использовать `SERVERLESS_TYPE=LAMBDA` или `SERVERLESS_TYPE=DISABLED`.
|
||||
</Warning>
|
||||
|
||||
### Логические функции — доступные драйверы
|
||||
### Доступные драйверы
|
||||
|
||||
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
|
||||
| --------- | ------------------------------ | -------------------------------------- | ----------------------------------------- |
|
||||
| Отключено | `LOGIC_FUNCTION_TYPE=DISABLED` | Полностью отключить логические функции | Н/Д |
|
||||
| Локальный | `LOGIC_FUNCTION_TYPE=LOCAL` | Разработка и доверенные среды | Низкий (без изоляции) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Продакшн с недоверенным кодом | Высокий (изоляция на уровне оборудования) |
|
||||
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
|
||||
| --------- | -------------------------- | -------------------------------------- | ----------------------------------------- |
|
||||
| Отключено | `SERVERLESS_TYPE=DISABLED` | Полностью отключить логические функции | Н/Д |
|
||||
| Локальный | `SERVERLESS_TYPE=LOCAL` | Разработка и доверенные среды | Низкий (без изоляции) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Продакшн с недоверенным кодом | Высокий (изоляция на уровне оборудования) |
|
||||
|
||||
### Логические функции — рекомендуемая конфигурация
|
||||
### Рекомендуемая конфигурация
|
||||
|
||||
**Для разработки:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**Для продакшна (AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Чтобы отключить логические функции:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### Интерпретатор кода — доступные драйверы
|
||||
|
||||
| Драйвер | Переменная окружения | Сценарий использования | Уровень безопасности |
|
||||
| --------- | -------------------------------- | ----------------------------------------------------- | --------------------------------- |
|
||||
| Отключено | `CODE_INTERPRETER_TYPE=DISABLED` | Отключить выполнение кода ИИ | Н/Д |
|
||||
| Локальный | `CODE_INTERPRETER_TYPE=LOCAL` | Только для разработки | Низкий (без изоляции) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Рабочая среда с изолированным исполнением в песочнице | Высокий (изолированная песочница) |
|
||||
|
||||
<Note>
|
||||
При использовании `LOGIC_FUNCTION_TYPE=DISABLED` или `CODE_INTERPRETER_TYPE=DISABLED` любая попытка выполнения вернёт ошибку. Это полезно, если вы хотите запускать Twenty без этих возможностей.
|
||||
При использовании `SERVERLESS_TYPE=DISABLED` любая попытка выполнить логическую функцию вернет ошибку. Это полезно, если вы хотите запускать Twenty без возможностей логических функций.
|
||||
</Note>
|
||||
|
||||
@@ -64,12 +64,6 @@ yarn twenty function:execute --preInstall
|
||||
# Execute the post-install function
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Build the app for distribution
|
||||
yarn twenty app:build
|
||||
|
||||
# Publish the app to npm or a Twenty server
|
||||
yarn twenty app:publish
|
||||
|
||||
# Uninstall the application from the current workspace
|
||||
yarn twenty app:uninstall
|
||||
|
||||
@@ -1246,113 +1240,6 @@ uploadFile(
|
||||
|
||||
Nesneleri, mantık fonksiyonlarını, ön uç bileşenlerini ve birden çok tetikleyiciyi gösteren minimal, uçtan uca bir örneği [buradan](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world) inceleyin:
|
||||
|
||||
## Uygulamanızı derleme
|
||||
|
||||
Uygulamanızı `app:dev` ile geliştirdikten sonra, `app:build` kullanarak onu dağıtılabilir bir pakete derleyin.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Build the app (output goes to .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Build and create a tarball (.tgz) for distribution
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
Derleme süreci:
|
||||
|
||||
1. **Manifesti ayrıştırır ve doğrular** — kaynak dosyalarınızdaki tüm `defineX()` varlıklarını okur ve manifest yapısını doğrular.
|
||||
2. **Mantık işlevlerini ve ön bileşenleri derler** — TypeScript kaynaklarını esbuild kullanarak ESM `.mjs` dosyalarına paketler.
|
||||
3. **Sağlama toplamları üretir** — her bir oluşturulan dosya için MD5 karmalarını hesaplar ve manifestte `builtHandlerChecksum` / `builtComponentChecksum` olarak saklar.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| Seçenek | Açıklama |
|
||||
| ----------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| Seçenek | Açıklama |
|
||||
| ----------------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## Manuel kurulum (scaffolder olmadan)
|
||||
|
||||
En iyi başlangıç deneyimi için `create-twenty-app` kullanmanızı önersek de, bir projeyi manuel olarak da kurabilirsiniz. CLI'yi global olarak kurmayın. Bunun yerine `twenty-sdk`'yi yerel bir bağımlılık olarak ekleyin ve package.json içinde tek bir betik tanımlayın:
|
||||
|
||||
@@ -297,60 +297,46 @@ 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>
|
||||
|
||||
## Mantıksal İşlevler ve Kod Yorumlayıcısı
|
||||
## Mantıksal işlevler
|
||||
|
||||
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.
|
||||
|
||||
### Güvenlik Varsayılanları
|
||||
|
||||
**Üretimde (NODE_ENV=production):** Hem mantıksal işlevler hem de kod yorumlayıcı varsayılan olarak **Devre Dışı**dır. Bu özelliklere ihtiyacınız varsa, onları `LOGIC_FUNCTION_TYPE` ve `CODE_INTERPRETER_TYPE` ile açıkça etkinleştirmeniz gerekir.
|
||||
|
||||
**Geliştirmede (NODE_ENV=development):** Yerel olarak çalıştırırken kolaylık olması için her ikisinin varsayılanı **LOCAL**dır.
|
||||
Twenty, iş akışları ve özel mantık için mantıksal işlevleri destekler. Yürütme ortamı, `SERVERLESS_TYPE` ortam değişkeni aracılığıyla yapılandırılır.
|
||||
|
||||
<Warning>
|
||||
**Güvenlik Notu:** Yerel sürücü (`LOGIC_FUNCTION_TYPE=LOCAL` veya `CODE_INTERPRETER_TYPE=LOCAL`), herhangi bir sandbox olmadan kodu ana makinede doğrudan bir Node.js sürecinde çalıştırır. Yalnızca geliştirirken güvenilen kod için kullanılmalıdır. Üretim dağıtımlarında güvenilmeyen kodu işlerken, `LOGIC_FUNCTION_TYPE=LAMBDA` veya `CODE_INTERPRETER_TYPE=E2B` (korumalı alanla) kullanın ya da bunları devre dışı bırakın.
|
||||
**Güvenlik Notu:** Yerel sürücü (`SERVERLESS_TYPE=LOCAL`), herhangi bir sandbox olmadan kodu ana makinede doğrudan bir Node.js sürecinde çalıştırır. Yalnızca geliştirirken güvenilen kod için kullanılmalıdır. Güvenilmeyen kodu işleyen üretim dağıtımları için `SERVERLESS_TYPE=LAMBDA` veya `SERVERLESS_TYPE=DISABLED` kullanmanızı şiddetle öneririz.
|
||||
</Warning>
|
||||
|
||||
### Mantıksal İşlevler - Kullanılabilir Sürücüler
|
||||
### Kullanılabilir Sürücüler
|
||||
|
||||
| Sürücü | Ortam Değişkeni | Kullanım alanı | Güvenlik Düzeyi |
|
||||
| ---------- | ------------------------------ | ---------------------------------------------- | ------------------------------------ |
|
||||
| Devre dışı | `LOGIC_FUNCTION_TYPE=DISABLED` | Mantıksal işlevleri tamamen devre dışı bırakın | Uygulanamaz |
|
||||
| Yerel | `LOGIC_FUNCTION_TYPE=LOCAL` | Geliştirme ve güvenilir ortamlar | Düşük (sandbox yok) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | Güvenilmeyen kodla üretim | Yüksek (donanım düzeyinde izolasyon) |
|
||||
| Sürücü | Ortam Değişkeni | Kullanım alanı | Güvenlik Düzeyi |
|
||||
| ---------- | -------------------------- | ---------------------------------------------- | ------------------------------------ |
|
||||
| Devre dışı | `SERVERLESS_TYPE=DISABLED` | Mantıksal işlevleri tamamen devre dışı bırakın | Uygulanamaz |
|
||||
| Yerel | `SERVERLESS_TYPE=LOCAL` | Geliştirme ve güvenilir ortamlar | Düşük (sandbox yok) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | Güvenilmeyen kodla üretim | Yüksek (donanım düzeyinde izolasyon) |
|
||||
|
||||
### Mantıksal İşlevler - Önerilen Yapılandırma
|
||||
### Önerilen Yapılandırma
|
||||
|
||||
**Geliştirme için:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**Üretim için (AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**Mantıksal işlevleri devre dışı bırakmak için:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### Kod Yorumlayıcısı - Kullanılabilir Sürücüler
|
||||
|
||||
| Sürücü | Ortam Değişkeni | Kullanım Senaryosu | Güvenlik Düzeyi |
|
||||
| ---------- | -------------------------------- | --------------------------------------------- | --------------------------------- |
|
||||
| Devre dışı | `CODE_INTERPRETER_TYPE=DISABLED` | Yapay zekâ kod yürütmesini devre dışı bırakın | Uygulanamaz |
|
||||
| Yerel | `CODE_INTERPRETER_TYPE=LOCAL` | Yalnızca geliştirme için | Düşük (sandbox yok) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | Korumalı alanlı yürütmeyle üretim | Yüksek (yalıtılmış korumalı alan) |
|
||||
|
||||
<Note>
|
||||
`LOGIC_FUNCTION_TYPE=DISABLED` veya `CODE_INTERPRETER_TYPE=DISABLED` kullanıldığında, herhangi bir yürütme girişimi bir hata döndürür. Bu, Twenty'yi bu yetenekler olmadan çalıştırmak istiyorsanız kullanışlıdır.
|
||||
`SERVERLESS_TYPE=DISABLED` kullanıldığında, bir mantıksal işlevi yürütmeye yönelik herhangi bir girişim bir hata döndürür. Bu, Twenty'yi mantıksal işlev yetenekleri olmadan çalıştırmak istiyorsanız kullanışlıdır.
|
||||
</Note>
|
||||
|
||||
@@ -49,31 +49,25 @@ npx create-twenty-app@latest my-app --minimal
|
||||
从这里您可以:
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Add a new entity to your application (guided)
|
||||
# 向你的应用添加一个新实体(引导式)
|
||||
yarn twenty entity:add
|
||||
|
||||
# Watch your application's function logs
|
||||
# 监听你的应用函数日志
|
||||
yarn twenty function:logs
|
||||
|
||||
# Execute a function by name
|
||||
# 按名称执行一个函数
|
||||
yarn twenty function:execute -n my-function -p '{"name": "test"}'
|
||||
|
||||
# Execute the pre-install function
|
||||
# 执行安装前函数
|
||||
yarn twenty function:execute --preInstall
|
||||
|
||||
# Execute the post-install function
|
||||
# 执行安装后函数
|
||||
yarn twenty function:execute --postInstall
|
||||
|
||||
# Build the app for distribution
|
||||
yarn twenty app:build
|
||||
|
||||
# Publish the app to npm or a Twenty server
|
||||
yarn twenty app:publish
|
||||
|
||||
# Uninstall the application from the current workspace
|
||||
# 从当前工作区卸载该应用
|
||||
yarn twenty app:uninstall
|
||||
|
||||
# Display commands' help
|
||||
# 显示命令帮助
|
||||
yarn twenty help
|
||||
```
|
||||
|
||||
@@ -1246,113 +1240,6 @@ uploadFile(
|
||||
|
||||
在[此处](https://github.com/twentyhq/twenty/tree/main/packages/twenty-apps/hello-world)查看一个最小的端到端示例,展示对象、逻辑函数、前端组件和多种触发器:
|
||||
|
||||
## Building your app
|
||||
|
||||
Once you've developed your app with `app:dev`, use `app:build` to compile it into a distributable package.
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Build the app (output goes to .twenty/output/)
|
||||
yarn twenty app:build
|
||||
|
||||
# Build and create a tarball (.tgz) for distribution
|
||||
yarn twenty app:build --tarball
|
||||
```
|
||||
|
||||
The build process:
|
||||
|
||||
1. **Parses and validates the manifest** — reads all `defineX()` entities from your source files and validates the manifest structure.
|
||||
2. **Compiles logic functions and front components** — bundles TypeScript sources into ESM `.mjs` files using esbuild.
|
||||
3. **Generates checksums** — computes MD5 hashes for each built file, stored in the manifest as `builtHandlerChecksum` / `builtComponentChecksum`.
|
||||
4. **Generates the typed API client** — introspects the GraphQL schema and generates typed `CoreApiClient` and `MetadataApiClient` clients.
|
||||
5. **Runs a TypeScript type check** — runs `tsc --noEmit` to catch type errors before publishing.
|
||||
6. **Rebuilds with the generated client** — performs a second compilation pass so the generated client types are included.
|
||||
7. **Optionally creates a tarball** — if `--tarball` is passed, runs `npm pack` to create a `.tgz` file ready for distribution.
|
||||
|
||||
The build output in `.twenty/output/` contains:
|
||||
|
||||
```text
|
||||
.twenty/output/
|
||||
├── manifest.json # Manifest with checksums for all built files
|
||||
├── package.json # Copied from app root
|
||||
├── yarn.lock # Copied from app root
|
||||
├── src/
|
||||
│ ├── logic-functions/ # Compiled .mjs logic function files
|
||||
│ └── front-components/ # Compiled .mjs front component files
|
||||
├── public/ # Static assets (if any)
|
||||
└── my-app-1.0.0.tgz # Only with --tarball flag
|
||||
```
|
||||
|
||||
| 选项 | 描述 |
|
||||
| ----------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--tarball` | Also pack the output into a `.tgz` tarball |
|
||||
|
||||
## Publishing your app
|
||||
|
||||
Use `app:publish` to distribute your app — either to the npm registry or directly to a Twenty server.
|
||||
|
||||
### Publish to npm (default)
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish to npm (requires npm login)
|
||||
yarn twenty app:publish
|
||||
|
||||
# Publish with a dist-tag (e.g. beta, next)
|
||||
yarn twenty app:publish --tag beta
|
||||
```
|
||||
|
||||
This builds the app and runs `npm publish` from the `.twenty/output/` directory. The published package can then be installed from the Twenty marketplace by any workspace.
|
||||
|
||||
### Publish to a Twenty server
|
||||
|
||||
```bash filename="Terminal"
|
||||
# Publish directly to a Twenty server
|
||||
yarn twenty app:publish --server https://app.twenty.com
|
||||
```
|
||||
|
||||
This builds the app with a tarball, uploads it to the server via the `uploadAppTarball` GraphQL mutation, and triggers installation in one step. This is useful for private deployments or testing against a specific server.
|
||||
|
||||
| 选项 | 描述 |
|
||||
| ----------------- | --------------------------------------------------------- |
|
||||
| `[appPath]` | Path to the app directory (defaults to current directory) |
|
||||
| `--server <url>` | Publish to a Twenty server instead of npm |
|
||||
| `--token <token>` | Authentication token for the target server |
|
||||
| `--tag <tag>` | npm dist-tag (e.g. `beta`, `next`) — only for npm publish |
|
||||
|
||||
## Application registration
|
||||
|
||||
Before an app can be installed in a workspace, it must be **registered**. A registration is a metadata record that describes where the app comes from and how to authenticate it. This is handled automatically by the CLI in most cases.
|
||||
|
||||
### Source types
|
||||
|
||||
Each registration has a **source type** that determines how the app's files are resolved during installation:
|
||||
|
||||
| Source type | How files are resolved | Typical use case |
|
||||
| ----------- | -------------------------------------------------------------------------- | -------------------------------------- |
|
||||
| `LOCAL` | Files are synced in real-time by the CLI watcher — installation is skipped | Development with `app:dev` |
|
||||
| `NPM` | Fetched from the npm registry via the `sourcePackage` field | Published apps on npm |
|
||||
| `TARBALL` | Extracted from an uploaded `.tgz` file stored on the server | Private apps published with `--server` |
|
||||
|
||||
### How registration happens
|
||||
|
||||
* **`app:dev`** — automatically creates a `LOCAL` registration the first time you run dev mode against a workspace.
|
||||
* **`app:publish --server`** — uploads a tarball and creates (or updates) a `TARBALL` registration, then installs the app.
|
||||
* **npm marketplace** — `NPM` registrations are created when apps are synced from the npm registry into the Twenty marketplace catalog.
|
||||
* **GraphQL API** — you can also create registrations programmatically via the `createApplicationRegistration` mutation.
|
||||
|
||||
### Registration vs installation
|
||||
|
||||
**Registration** and **installation** are separate concepts:
|
||||
|
||||
* A **registration** (`ApplicationRegistration`) is a global metadata record describing the app: its name, source type, OAuth credentials, and marketplace listing status. It exists independently of any workspace.
|
||||
* An **installation** (`Application`) is a per-workspace instance. When a user installs an app, Twenty resolves the package from the registration's source, writes the built files to storage, and synchronizes the manifest (creating objects, fields, logic functions, etc.) in that workspace.
|
||||
|
||||
One registration can be installed in many workspaces. Each workspace gets its own copy of the app's files and data model.
|
||||
|
||||
### OAuth credentials
|
||||
|
||||
Each registration includes OAuth credentials (`oAuthClientId` and `oAuthClientSecret`) generated at creation time. These are used by the app to authenticate API requests on behalf of users. The client secret is returned **once** at creation — store it securely. You can rotate it later via the `rotateApplicationRegistrationClientSecret` mutation.
|
||||
|
||||
## 手动设置(不使用脚手架)
|
||||
|
||||
虽然我们建议使用 `create-twenty-app` 以获得最佳的上手体验,但你也可以手动设置项目。 不要全局安装 CLI。 相反,请将 `twenty-sdk` 添加为本地依赖,并在你的 package.json 中配置一个脚本:
|
||||
|
||||
@@ -297,60 +297,46 @@ yarn command:prod cron:workflow:automated-cron-trigger
|
||||
**仅限环境模式:** 如果你设置 `IS_CONFIG_VARIABLES_IN_DB_ENABLED=false`,请将这些变量添加到 `.env` 文件中。
|
||||
</Warning>
|
||||
|
||||
## 逻辑函数与代码解释器
|
||||
## 逻辑函数
|
||||
|
||||
Twenty 支持用于工作流的逻辑函数,以及用于 AI 数据分析的代码解释器。 二者都会运行用户提供的代码,并要求进行显式配置以确保安全。
|
||||
|
||||
### 安全默认设置
|
||||
|
||||
**在生产环境(NODE_ENV=production):** 逻辑函数和代码解释器的默认设置为**禁用**。 如需这些功能,必须通过 `LOGIC_FUNCTION_TYPE` 和 `CODE_INTERPRETER_TYPE` 显式启用它们。
|
||||
|
||||
**在开发环境(NODE_ENV=development):** 为方便在本地运行,二者默认均为**LOCAL**。
|
||||
Twenty 支持用于工作流和自定义逻辑的逻辑函数。 执行环境通过 `SERVERLESS_TYPE` 环境变量进行配置。
|
||||
|
||||
<Warning>
|
||||
**安全提示:** 本地驱动(`LOGIC_FUNCTION_TYPE=LOCAL` 或 `CODE_INTERPRETER_TYPE=LOCAL`)会在没有沙箱的情况下,在主机上的 Node.js 进程中直接运行代码。 它应仅在开发环境中用于可信代码。 对于在生产环境中处理不受信任代码的部署,请使用 `LOGIC_FUNCTION_TYPE=LAMBDA` 或 `CODE_INTERPRETER_TYPE=E2B`(使用沙盒),或将它们保持禁用。
|
||||
\*\*安全提示:\*\*本地驱动(`SERVERLESS_TYPE=LOCAL`)在没有沙箱的情况下,在主机上的 Node.js 进程中直接运行代码。 它应仅在开发环境中用于可信代码。 对于在生产环境中处理不受信任代码的部署,我们强烈建议使用 `SERVERLESS_TYPE=LAMBDA` 或 `SERVERLESS_TYPE=DISABLED`。
|
||||
</Warning>
|
||||
|
||||
### 逻辑函数 - 可用驱动程序
|
||||
### 可用驱动
|
||||
|
||||
| 驱动 | 环境变量 | 用例 | 安全级别 |
|
||||
| ------ | ------------------------------ | -------------- | -------- |
|
||||
| 禁用 | `LOGIC_FUNCTION_TYPE=DISABLED` | 完全禁用逻辑函数 | 不适用 |
|
||||
| 本地 | `LOGIC_FUNCTION_TYPE=LOCAL` | 开发和可信环境 | 低(无沙箱) |
|
||||
| Lambda | `LOGIC_FUNCTION_TYPE=LAMBDA` | 生产环境(处理不受信任代码) | 高(硬件级隔离) |
|
||||
| 驱动 | 环境变量 | 用例 | 安全级别 |
|
||||
| ------ | -------------------------- | -------------- | -------- |
|
||||
| 禁用 | `SERVERLESS_TYPE=DISABLED` | 完全禁用逻辑函数 | 不适用 |
|
||||
| 本地 | `SERVERLESS_TYPE=LOCAL` | 开发和可信环境 | 低(无沙箱) |
|
||||
| Lambda | `SERVERLESS_TYPE=LAMBDA` | 生产环境(处理不受信任代码) | 高(硬件级隔离) |
|
||||
|
||||
### 逻辑函数 - 推荐配置
|
||||
### 推荐配置
|
||||
|
||||
**用于开发:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LOCAL # default when NODE_ENV=development
|
||||
SERVERLESS_TYPE=LOCAL # default
|
||||
```
|
||||
|
||||
**用于生产(AWS):**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=LAMBDA
|
||||
LOGIC_FUNCTION_LAMBDA_REGION=us-east-1
|
||||
LOGIC_FUNCTION_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
SERVERLESS_TYPE=LAMBDA
|
||||
SERVERLESS_LAMBDA_REGION=us-east-1
|
||||
SERVERLESS_LAMBDA_ROLE=arn:aws:iam::123456789:role/your-lambda-role
|
||||
SERVERLESS_LAMBDA_ACCESS_KEY_ID=your-access-key
|
||||
SERVERLESS_LAMBDA_SECRET_ACCESS_KEY=your-secret-key
|
||||
```
|
||||
|
||||
**要禁用逻辑函数:**
|
||||
|
||||
```bash
|
||||
LOGIC_FUNCTION_TYPE=DISABLED # default when NODE_ENV=production
|
||||
SERVERLESS_TYPE=DISABLED
|
||||
```
|
||||
|
||||
### 代码解释器 - 可用驱动程序
|
||||
|
||||
| 驱动 | 环境变量 | 用例 | 安全级别 |
|
||||
| --- | -------------------------------- | ----------- | ------- |
|
||||
| 禁用 | `CODE_INTERPRETER_TYPE=DISABLED` | 禁用 AI 代码执行 | 不适用 |
|
||||
| 本地 | `CODE_INTERPRETER_TYPE=LOCAL` | 仅限开发环境 | 低(无沙箱) |
|
||||
| E2B | `CODE_INTERPRETER_TYPE=E_2_B` | 生产环境(沙盒化执行) | 高(隔离沙盒) |
|
||||
|
||||
<Note>
|
||||
当使用 `LOGIC_FUNCTION_TYPE=DISABLED` 或 `CODE_INTERPRETER_TYPE=DISABLED` 时,任何执行尝试都会返回错误。 如果你想在不启用这些功能的情况下运行 Twenty,这将很有用。
|
||||
使用 `SERVERLESS_TYPE=DISABLED` 时,任何尝试执行逻辑函数的操作都会返回错误。 如果你想在不启用逻辑函数能力的情况下运行 Twenty,这将很有用。
|
||||
</Note>
|
||||
|
||||
@@ -45,10 +45,13 @@ module.exports = {
|
||||
plugins: [
|
||||
'typescript',
|
||||
'typescript-operations',
|
||||
'typed-document-node',
|
||||
'typescript-react-apollo',
|
||||
],
|
||||
config: {
|
||||
skipTypename: false,
|
||||
withHooks: true,
|
||||
withHOC: false,
|
||||
withComponent: false,
|
||||
scalars: {
|
||||
DateTime: 'string',
|
||||
UUID: 'string',
|
||||
|
||||
@@ -21,10 +21,13 @@ module.exports = {
|
||||
plugins: [
|
||||
'typescript',
|
||||
'typescript-operations',
|
||||
'typed-document-node',
|
||||
'typescript-react-apollo',
|
||||
],
|
||||
config: {
|
||||
skipTypename: false,
|
||||
withHooks: true,
|
||||
withHOC: false,
|
||||
withComponent: false,
|
||||
scalars: {
|
||||
DateTime: 'string',
|
||||
},
|
||||
|
||||
@@ -24,12 +24,12 @@ const jestConfig = {
|
||||
testEnvironmentOptions: {},
|
||||
|
||||
transformIgnorePatterns: [
|
||||
'/node_modules/(?!(twenty-ui|apollo-upload-client|extract-files|is-plain-obj)/.*)',
|
||||
'../../node_modules/(?!(twenty-ui|apollo-upload-client|extract-files|is-plain-obj)/.*)',
|
||||
'/node_modules/(?!(twenty-ui)/.*)',
|
||||
'../../node_modules/(?!(twenty-ui)/.*)',
|
||||
'../../twenty-ui/',
|
||||
],
|
||||
transform: {
|
||||
'^.+\\.(ts|js|tsx|jsx|mjs)$': [
|
||||
'^.+\\.(ts|js|tsx|jsx)$': [
|
||||
'@swc/jest',
|
||||
{
|
||||
jsc: {
|
||||
@@ -61,8 +61,8 @@ const jestConfig = {
|
||||
extensionsToTreatAsEsm: ['.ts', '.tsx'],
|
||||
coverageThreshold: {
|
||||
global: {
|
||||
statements: 49,
|
||||
lines: 47.6,
|
||||
statements: 49.1,
|
||||
lines: 47.7,
|
||||
functions: 39.5,
|
||||
},
|
||||
},
|
||||
|
||||
@@ -30,7 +30,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@ai-sdk/react": "3.0.99",
|
||||
"@apollo/client": "^4.0.0",
|
||||
"@apollo/client": "^3.7.17",
|
||||
"@blocknote/mantine": "^0.47.1",
|
||||
"@blocknote/react": "^0.47.1",
|
||||
"@blocknote/xl-docx-exporter": "^0.47.1",
|
||||
@@ -77,8 +77,8 @@
|
||||
"@types/marked": "^6.0.0",
|
||||
"@xyflow/react": "^12.4.2",
|
||||
"ai": "6.0.97",
|
||||
"apollo-link-rest": "^0.10.0-rc.2",
|
||||
"apollo-upload-client": "^19.0.0",
|
||||
"apollo-link-rest": "^0.9.0",
|
||||
"apollo-upload-client": "^17.0.0",
|
||||
"buffer": "^6.0.3",
|
||||
"cron-parser": "5.1.1",
|
||||
"date-fns": "^2.30.0",
|
||||
@@ -126,6 +126,7 @@
|
||||
"@lingui/vite-plugin": "^5.1.2",
|
||||
"@playwright/test": "^1.56.1",
|
||||
"@tiptap/suggestion": "3.4.2",
|
||||
"@types/apollo-upload-client": "^17.0.2",
|
||||
"@types/file-saver": "^2.0.7",
|
||||
"@types/js-cookie": "^3.0.3",
|
||||
"@types/json-logic-js": "^2",
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -1,4 +1,4 @@
|
||||
import { getOperationName } from '~/utils/getOperationName';
|
||||
import { getOperationName } from '@apollo/client/utilities';
|
||||
import { type Meta, type StoryObj } from '@storybook/react-vite';
|
||||
import { HttpResponse, graphql, http } from 'msw';
|
||||
import { expect, within } from 'storybook/test';
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Aksies gebruikers kan uitvoer op hierdie voorwerp"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Aktiveer"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Aktiveer Werkstroom"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Voeg \"{trimmedName}\" by opsies"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Voeg 'n {objectLabelSingular} by"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Voeg 'n nodus by"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Alles reg!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "'n Fout het voorgekom tydens die oplaai van die prent."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webtuistes"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Oplopend"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Vra AI"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Aanhegsels"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "tussen die {startOrdinal} en {endOrdinal} van die maand"
|
||||
msgid "Billing"
|
||||
msgstr "Fakturering"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Kanselleer gemeterde vlakwisseling?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Kanselleer Plan"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Kanselleer planwisseling?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Kanselleer jou intekening"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Konfigureer terugval-aanmeldmetodes vir gebruikers met SSO omseil toestemmings"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Stel filters op"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Gaan voort"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Koste per 1k ekstra krediette"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Kon nie goedgekeurde toegangsdomein uitvee nie"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Pasgemaakte domein opgedateer"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Pasgemaakte voorwerpe"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Redigeer betalingsmetode, sien jou fakture en meer"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Verhoog sekuriteit deur 'n kode saam met jou wagwoord te vereis"
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Geniet 'n {withCreditCardTrialPeriodDuration}-dae gratis proeftydperk"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Voer jou API-sleutel in"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Onderneming"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Onderneming"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Easy wiping van rekords wat sag verwyder is"
|
||||
msgid "Error"
|
||||
msgstr "Fout"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Fout met die verwydering van SSO Identiteitsverskaffer"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Fout met die redigering van SSO Identiteitsverskaffer"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Fout met die ophaal van werkermetrieke: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Fout met die laai van boodskap"
|
||||
msgid "Error Message"
|
||||
msgstr "Foutboodskap"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Fout met ontleding van bykomende fone: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Opsies vir filterreëlgroep"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filtreerders"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Voornaam"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Voornaam kan nie leeg wees nie"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Lêers"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Gegenereerde lêers"
|
||||
msgid "German"
|
||||
msgstr "Duits"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Globaal"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Inboks"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Begin handmatig"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Kleiner as of gelyk aan"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Bestuur rekening en intekeninge"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Bestuur faktuurinligting"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Maand van die jaar"
|
||||
msgid "monthly"
|
||||
msgstr "maandeliks"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Skuif regs"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Geen Lêers Nie"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Geen vouer"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Geen Resultate"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Geen resultate gevind nie"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Wagwoord herstel skakel is na die e-pos gestuur"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Plak die kode hieronder"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Pad"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Kies 'n {objectLabel} rekord"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Vrystellings"
|
||||
msgid "Reload"
|
||||
msgstr "Herlaai"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Resultaat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultate"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Soek"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Soek 'n veld..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Soek rekords"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "sitplek / maand"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "sitplek / maand - jaarliks gefaktureer"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "EGS"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Begin"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Staat"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Daar is vereiste kolomme wat nie ooreenstem of geïgnoreer is nie. Wil j
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Daar is nog steeds rye wat foute bevat. Rye met foute sal geïgnoreer word wanneer ingedien word."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Hierdie databasis waarde oorskry omgewingsinstellings."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Proeflopie"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "Tik enigiets..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "Onbeperkte kontakte"
|
||||
msgid "Unlisted"
|
||||
msgstr "Ongepubliseer"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "opdateer"
|
||||
msgid "Update"
|
||||
msgstr "Opdateer"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "Gebruik verstek toepassing waarde. Stel in via omgewingsveranderlikes."
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Gebruik verstek waarde. Stel 'n pasgemaakte waarde om te oorskryf."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Valideer data"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Sien faktuurbesonderhede"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "bekyk Groep"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Sien Vorige KI-kletse"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "Werksvloeie"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "Jaar"
|
||||
msgid "yearly"
|
||||
msgstr "jaarliks"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "Jou e-posonderwerpe en vergadertitels sal met jou span gedeel word."
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Jou e-pos en gebeurtenisinhalte sal met jou span gedeel word."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "Jou naam soos dit vertoon sal word"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Jou naam soos dit op die app vertoon sal word"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "الإجراءات التي يمكن للمستخدمين تنفيذها على هذا الكائن"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "تفعيل"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "تفعيل سير العمل"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "أضف \"{trimmedName}\" إلى الخيارات"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "أضف {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "إضافة عقدة"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "كل شيء جاهز!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "حدث خطأ أثناء تحميل الصورة."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "واجهة برمجة التطبيقات"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "واجهة برمجة التطبيقات والويب هوك"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "تصاعدي"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "اسأل الذكاء الاصطناعي"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "المرفقات"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "بين {startOrdinal} و {endOrdinal} من الشهر"
|
||||
msgid "Billing"
|
||||
msgstr "الفوترة"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "إلغاء تبديل الطبقة المقاسة؟"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "إلغاء الخطة"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "إلغاء تبديل الخطة؟"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "إلغاء الاشتراك"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "تكوين طرق تسجيل دخول احتياطية للمستخدمين الذين لديهم صلاحيات تجاوز SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "تكوين الفلاتر"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "استمر"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "التكلفة لكل 1k من الإعتمادات الإضافية"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "تعذر حذف نطاق الوصول الموافق عليه"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "النطاق المخصص محدث"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "كائنات مخصصة"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "تعديل طريقة الدفع، ومشاهدة الفواتير والمزيد"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "يعزز الأمان من خلال طلب رمز مع كلمة المر
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "استمتع بفترة تجربة مجانية لمدة {withCreditCardTrialPeriodDuration} أيام"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "أدخل مفتاح API الخاص بك"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "مؤسسة"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "مؤسسة"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "محو السجلات المحذوفة مؤقتًا"
|
||||
msgid "Error"
|
||||
msgstr "خطأ"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "خطأ في حذف موفر هوية الدخول الأحادي SSO"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "خطأ في تحرير موفر هوية الدخول الأحادي SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "خطأ في جلب مقاييس العامل: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "خطأ في تحميل الرسالة"
|
||||
msgid "Error Message"
|
||||
msgstr "رسالة الخطأ"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "خطأ في تحليل أرقام الهواتف الإضافية: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "خيارات قواعد مجموعة التصفية"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "الفلاتر"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "الاسم الأول"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "لا يمكن أن يكون الاسم الأول فارغًا"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "مجلدات"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "الملفات المُولَّدة"
|
||||
msgid "German"
|
||||
msgstr "الألمانية"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "عالمي"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "صندوق الوارد"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "التشغيل يدويًا"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "أقل من أو يساوي"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "إدارة الفوترة والاشتراكات"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "إدارة معلومات الفوترة"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "شهر من السنة"
|
||||
msgid "monthly"
|
||||
msgstr "شهري"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "نقل إلى اليمين"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "لا توجد ملفات"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "لا يوجد مجلد"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "لا توجد نتائج"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "لم يتم العثور على نتائج"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "تم إرسال رابط إعادة تعيين كلمة السر إلى
|
||||
msgid "Paste the code below"
|
||||
msgstr "الصق الرمز أدناه"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "مسار"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "اختر سجل {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "\\\\"
|
||||
msgid "Reload"
|
||||
msgstr "إعادة تحميل"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "النتيجة"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "\\\\"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "\\\\"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "ابحث عن حقل..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "\\\\"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "مقعد / شهر"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "مقعد / شهر - مدفوع سنويًا"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "التسجيل الموحد"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "تسجيل الدخول الأحادي (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "ابدأ"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "الولاية"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "هناك أعمدة مطلوبة لم يتم مطابقتها أو تج
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "لا تزال هناك بعض الصفوف التي تحتوي على أخطاء. سيتم تجاهل الصفوف التي تحتوي على أخطاء عند الإرسال."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "هذه القيمة في قاعدة البيانات تتخطى إعدادات البيئة."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "تجربة"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "اكتب أي شيء..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "جهات اتصال غير محدودة"
|
||||
msgid "Unlisted"
|
||||
msgstr "غير مدرج"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "تحديث"
|
||||
msgid "Update"
|
||||
msgstr "تحديث"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "يتم استخدام قيمة التطبيق الافتراضية. قم
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "يتم استخدام القيمة الافتراضية. اضبط قيمة مخصصة للتجاوز."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "تحقق من البيانات"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "عرض تفاصيل الفوترة"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "مجموعة العرض"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "عرض الذكاءات الاصطناعية السابقة"
|
||||
|
||||
@@ -15083,7 +14850,6 @@ msgstr "سير العمل"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15250,11 +15016,6 @@ msgstr "عام"
|
||||
msgid "yearly"
|
||||
msgstr "سنوي"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15387,36 +15148,6 @@ msgstr "سوف يتم مشاركة مواضيع بريدك واجتماعاتك
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "محتوى بريدك وأحداثك سوف يتم مشاركته مع فريقك."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15427,26 +15158,6 @@ msgstr "اسمك كما سيتم عرضه"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "اسمك كما سيتم عرضه على التطبيق"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Accions que poden realitzar els usuaris en aquest objecte"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Activa"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Activa el flux de treball"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Afegeix \"{trimmedName}\" a les opcions"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Afegeix un {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Afegeix un node"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Tot a punt!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "S'ha produït un error en carregar la imatge."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API i Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Ascendent"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Pregunta a l'IA"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Adjunts"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "entre el {startOrdinal} i el {endOrdinal} del mes"
|
||||
msgid "Billing"
|
||||
msgstr "Facturació"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Cancel·lar el canvi de nivell mesurat?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Cancel·la el pla"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Cancel·lar el canvi de pla?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancel·la la subscripció"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configura els mètodes de connexió d'emergència per a usuaris amb permisos per saltar SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Configuració de filtres"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continua"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Cost per 1 k Crèdits Extres"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "No s'ha pogut eliminar el domini d'accés aprovat"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Domini personalitzat actualitzat"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Objectes personalitzats"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Edita el mètode de pagament, veure les factures i més"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Millora la seguretat requerint un codi juntament amb la teva contrasenya
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Gaudeix d'un període de prova gratuït de {withCreditCardTrialPeriodDuration} dies"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Introdueix la teva clau API"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Empresa"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Empresa"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Esborrament de registres eliminats suaument"
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Error en eliminar el Proveïdor d'Identitats SSO"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Error en editar el Proveïdor d'Identitats SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Error en obtenir les mètriques del worker: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Error carregant el missatge"
|
||||
msgid "Error Message"
|
||||
msgstr "Missatge d'error"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Error en analitzar els telèfons addicionals: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Opcions de regles del grup de filtres"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filtres"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Nom"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "El nom no pot estar buit"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Carpetes"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Fitxers generats"
|
||||
msgid "German"
|
||||
msgstr "Alemany"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Global"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Bústia d'entrada"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Llança manualment"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Menor o igual"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Gestionar facturació i subscripcions"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Gestiona la informació de facturació"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Mes de l'any"
|
||||
msgid "monthly"
|
||||
msgstr "mensual"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Moure a la dreta"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Sense fitxers"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Sense carpeta"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Cap resultat"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "No s'han trobat resultats"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "S'ha enviat l'enllaç de restabliment de la contrasenya al correu electr
|
||||
msgid "Paste the code below"
|
||||
msgstr "Enganxa el codi a continuació"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Camí"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Tria un registre de {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Versions"
|
||||
msgid "Reload"
|
||||
msgstr "Tornar a carregar"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultats"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Cerca un camp..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Cerca enregistraments"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr ""
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Comença"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Hi ha columnes requerides que no coincideixen o s'han ignorat. Vols cont
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Encara hi ha files que contenen errors. Les files amb errors s'ignoraran en enviar."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Aquest valor de la base de dades supera la configuració de l'entorn."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Prova"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "Teclegeu qualsevol cosa..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "Contactes il·limitats"
|
||||
msgid "Unlisted"
|
||||
msgstr "No Llistat"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "actualitza"
|
||||
msgid "Update"
|
||||
msgstr "Actualitza"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "Utilitzant valor predeterminat de l'aplicació. Configureu mitjançant v
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Utilitzant valor per defecte. Establiu un valor personalitzat per superar-lo."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Verifica les dades"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Veure els detalls de facturació"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "grup de vista"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Veure els xats d'IA anteriors"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "Fluxos de treball"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "Any"
|
||||
msgid "yearly"
|
||||
msgstr "anual"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "Els teus assumptes de correus electrònics i títols de reunions seran c
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "El contingut dels teus correus electrònics i esdeveniments seran compartits amb el teu equip."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "El vostre nom tal com serà mostrat"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "El vostre nom tal com serà mostrat a l'aplicació"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Akce, které uživatelé mohou provádět na tomto objektu"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Aktivovat"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Aktivovat Workflow"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Přidat \"{trimmedName}\" do možností"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Přidat {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Přidat uzel"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Vše hotovo!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Při nahrávání obrázku došlo k chybě."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Vzestupně"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Zeptejte se AI"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Přílohy"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "mezi {startOrdinal} a {endOrdinal} měsíce"
|
||||
msgid "Billing"
|
||||
msgstr "Fakturace"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Zrušit přepínání úrovně s měřením?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Zrušit plán"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Zrušit změnu plánu?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Zrušit vaše předplatné"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Nakonfigurujte alternativní metody přihlášení pro uživatele s oprávněními k obejití SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Nastavit filtry"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Pokračovat"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Cena za 1k dalších kreditů"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Nelze odstranit schválenou přístupovou doménu"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Vlastní doména aktualizována"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Vlastní objekty"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Upravit způsob platby, zobrazit faktury a další"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Zvyšuje bezpečnost tím, že vyžaduje kód společně s vaším hesle
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Užijte si {withCreditCardTrialPeriodDuration}-denní bezplatnou zkušební dobu"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Zadejte svůj klíč API"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Podnik"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Podnik"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Vymazání soft-deleted záznamů"
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Chyba při mazání poskytovatele identity SSO"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Chyba při úpravě poskytovatele identity SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Chyba při získávání metrik pracovníka: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Chyba při načítání zprávy"
|
||||
msgid "Error Message"
|
||||
msgstr "Chybová zpráva"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Chyba při zpracování dalších telefonů: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Možnosti pravidel skupiny filtru"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filtry"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Jméno"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Křestní jméno nesmí být prázdné"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Složky"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Vygenerované soubory"
|
||||
msgid "German"
|
||||
msgstr "Němčina"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Globální"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Schránka"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Spustit ručně"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Menší nebo rovno"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Správa fakturace a předplatného"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Správa fakturačních údajů"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Měsíc v roce"
|
||||
msgid "monthly"
|
||||
msgstr "měsíční"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Posunout doprava"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Žádné soubory"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Žádná složka"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Žádné výsledky"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nenalezeny žádné výsledky"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Odkaz pro resetování hesla byl odeslán na email"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Vložte kód níže"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Cesta"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Vyberte záznam {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Verze"
|
||||
msgid "Reload"
|
||||
msgstr "Načíst znovu"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Výsledek"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Výsledky"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Hledat"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Hledat ve sloupci..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Hledání záznamů"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "sedadlo / měsíc"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "sedadlo / měsíc - účtováno ročně"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "Jednotné přihlášení"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Spustit"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Některé povinné sloupce nejsou spojené nebo ignorované. Chcete pokr
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Stále existují některé řádky, které obsahují chyby. Řádky s chybami budou při odesílání ignorovány."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Tato hodnota databáze přepisuje nastavení prostředí."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Zkušební verze"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "Napište cokoli..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "Neomezený počet kontaktů"
|
||||
msgid "Unlisted"
|
||||
msgstr "Neveřejné"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "aktualizovat"
|
||||
msgid "Update"
|
||||
msgstr "Aktualizovat"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "Použita výchozí hodnota aplikace. Nakonfigurujte pomocí proměnných
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Použita výchozí hodnota. Nastavte vlastní hodnotu pro přepsání."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Ověřit data"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Zobrazit detaily fakturace"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "zobrazit skupinu"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Zobrazit předchozí AI diskuse"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "Pracovní postupy"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "Rok"
|
||||
msgid "yearly"
|
||||
msgstr "roční"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "Vaše předměty e-mailů a názvy schůzek budou sdíleny s vaším tý
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Obsah vašich e-mailů a událostí bude sdílen s vaším týmem."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "Vaše jméno, jak bude zobrazeno"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Vaše jméno, jak bude zobrazeno v aplikaci"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Handlinger brugere kan udføre på denne genstand"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Aktivér"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Aktivér Arbejdsproces"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Tilføj \"{trimmedName}\" til muligheder"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Tilføj {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Tilføj en node"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Alt klar!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Der opstod en fejl under upload af billedet."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Stigende"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Spørg AI"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Vedhæftninger"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "mellem den {startOrdinal} og {endOrdinal} i måneden"
|
||||
msgid "Billing"
|
||||
msgstr "Fakturering"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Annuller skift til målt niveau?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Annuller abonnement"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Annuller planskift?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Annuller dit abonnement"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Konfigurer alternativer loginmetoder til brugere med SSO-forbigående tilladelser"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Konfigurer filtre"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Fortsæt"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Pris per 1k ekstra kreditter"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Kunne ikke slette godkendt adgangsdomæne"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Brugerdefineret domæne opdateret"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Tilpassede objekter"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Rediger betalingsmetode, se dine fakturaer og mere"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Forbedrer sikkerheden ved at kræve en kode sammen med din adgangskode"
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Nyd en {withCreditCardTrialPeriodDuration}-dages gratis prøveperiode"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Indtast din API-nøgle"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Virksomhed"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Virksomhed"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Sletning af blødt slettede poster"
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Fejl ved sletning af SSO Identitetsudbyder"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Fejl ved redigering af SSO Identitetsudbyder"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Fejl ved hentning af worker-metrics: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Fejl ved indlæsning af meddelelse"
|
||||
msgid "Error Message"
|
||||
msgstr "Fejlmeddelelse"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Fejl ved fortolkning af ekstra telefonnumre: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Indstillinger for filterregelgruppe"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filtre"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Fornavn"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Fornavn må ikke være tomt"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Mapper"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Genererede filer"
|
||||
msgid "German"
|
||||
msgstr "Tysk"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Globalt"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Indbakke"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Start manuelt"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Mindre end eller lig med"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Administrer fakturering og abonnementer"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Administrer faktureringsoplysninger"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Måned i året"
|
||||
msgid "monthly"
|
||||
msgstr "månedligt"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Flyt til højre"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Ingen filer"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Ingen mappe"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Ingen resultater"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Ingen resultater fundet"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Link til password nulstilling er blevet sendt til emailadressen"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Indsæt koden nedenfor"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Sti"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Vælg en {objectLabel} post"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Udgivelser"
|
||||
msgid "Reload"
|
||||
msgstr "Genindlæs"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultater"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Søg"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Søg i et felt..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Søg poster"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "sæde / måned"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "sæde / måned - faktureres årligt"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Start"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Tilstand"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Der er nødvendige kolonner, der ikke er matchet eller ignoreret. Vil du
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Der er stadig nogle rækker, der indeholder fejl. Rækker med fejl vil blive ignoreret ved indsendelse."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13543,9 +13341,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Denne databaseværdi overskriver miljøindstillingerne."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13854,8 +13652,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Prøve"
|
||||
@@ -14046,7 +13842,7 @@ msgid "Type anything..."
|
||||
msgstr "Skriv noget..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14204,11 +14000,6 @@ msgstr "Ubegrænsede kontakter"
|
||||
msgid "Unlisted"
|
||||
msgstr "Ikke opført"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14278,11 +14069,6 @@ msgstr "opdater"
|
||||
msgid "Update"
|
||||
msgstr "Opdater"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14521,22 +14307,11 @@ msgstr "Bruger standardappsværdi. Konfigurer via miljøvariabler."
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Bruger standardværdi. Indstil en brugerdefineret værdi for at tilsidesætte."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Valider data"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14663,8 +14438,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Se faktureringsdetaljer"
|
||||
@@ -14714,11 +14487,6 @@ msgstr "vis gruppe"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14737,7 +14505,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Se tidligere AI-chats"
|
||||
|
||||
@@ -15087,7 +14854,6 @@ msgstr "Arbejdsgange"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15254,11 +15020,6 @@ msgstr "År"
|
||||
msgid "yearly"
|
||||
msgstr "årligt"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15391,36 +15152,6 @@ msgstr "Dine e-mail emner og mødetitler vil blive delt med dit team."
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Dine e-mails og begivenhedsindhold vil blive delt med dit team."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15431,26 +15162,6 @@ msgstr "Dit navn som det vil blive vist"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Dit navn som det vil blive vist i appen"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Aktionen, die Benutzer auf diesem Objekt durchführen können"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Aktivieren"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Workflow aktivieren"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "\"{trimmedName}\" zu den Optionen hinzufügen"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Ein {objectLabelSingular} hinzufügen"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Knoten hinzufügen"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Alles bereit!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Beim Hochladen des Bildes ist ein Fehler aufgetreten."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Aufsteigend"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "AI fragen"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Anhänge"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "zwischen dem {startOrdinal} und {endOrdinal} des Monats"
|
||||
msgid "Billing"
|
||||
msgstr "Abrechnung"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Zählertarifwechsel abbrechen?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Plan kündigen"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Tarifwechsel abbrechen?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Abonnement kündigen"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Fallback-Login-Methoden für Benutzer mit SSO-Umgehungsberechtigungen konfigurieren"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Filter konfigurieren"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Weiter"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Kosten pro 1k zusätzliche Credits"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Genehmigte Zugriffsdomäne konnte nicht gelöscht werden"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Benutzerdefinierte Domain aktualisiert"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Benutzerdefinierte Objekte"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Zahlungsmethode bearbeiten, Rechnungen einsehen und mehr"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Verbessert die Sicherheit, indem zusätzlich zu Ihrem Passwort ein Code
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Genießen Sie eine {withCreditCardTrialPeriodDuration}-tägige kostenlose Testphase"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Geben Sie Ihren API-Schlüssel ein"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Unternehmen"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Löschung weicher gelöschter Datensätze"
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Fehler beim Löschen des SSO-Identitätsanbieters"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Fehler beim Bearbeiten des SSO-Identitätsanbieters"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Fehler beim Abrufen der Worker-Metriken: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Fehler beim Laden der Nachricht"
|
||||
msgid "Error Message"
|
||||
msgstr "Fehlermeldung"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Fehler beim Parsen zusätzlicher Telefonnummern: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Optionen für Filterregelgruppe"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filter"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Vorname"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Vorname darf nicht leer sein"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Ordner"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Generierte Dateien"
|
||||
msgid "German"
|
||||
msgstr "Deutsch"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Global"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Posteingang"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Manuell auslösen"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Kleiner als oder gleich"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Abrechnung und Abonnements verwalten"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Verwalten Sie die Rechnungsdaten"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Monat des Jahres"
|
||||
msgid "monthly"
|
||||
msgstr "monatlich"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Nach rechts verschieben"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Keine Dateien"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Kein Ordner"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Keine Ergebnisse"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Keine Ergebnisse gefunden"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Der Link zum Zurücksetzen des Passworts wurde an die E-Mail gesendet"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Fügen Sie den Code unten ein"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Pfad"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Wählen Sie einen {objectLabel} Datensatz aus"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Veröffentlichungen"
|
||||
msgid "Reload"
|
||||
msgstr "Neu laden"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Ergebnis"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Ergebnisse"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Feld suchen..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Datensätze suchen"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "Sitzplatz / Monat"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "Sitzplatz / Monat - jährlich abgerechnet"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Starten"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Zustand"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Es gibt erforderliche Spalten, die nicht zugeordnet oder ignoriert wurde
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Es gibt noch einige Zeilen, die Fehler enthalten. Zeilen mit Fehlern werden beim Absenden ignoriert."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Dieser Datenbankwert überschreibt die Umgebungsanstellungen."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Testversion"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "Geben Sie irgendetwas ein..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "Unbegrenzte Kontakte"
|
||||
msgid "Unlisted"
|
||||
msgstr "Nicht gelistet"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "aktualisieren"
|
||||
msgid "Update"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "Verwendung des standardmäßigen Anwendungswertes. Konfiguration über U
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Verwendung des Standardwertes. Setzen Sie einen benutzerdefinierten Wert, um ihn zu überschreiben."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Daten validieren"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Rechnungsdetails anzeigen"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "ansichtsgruppe"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vorherige KI-Chats anzeigen"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "Workflows"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "Jahr"
|
||||
msgid "yearly"
|
||||
msgstr "jährlich"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "Ihre E-Mail-Betreffzeilen und Besprechungstitel werden mit Ihrem Team ge
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Der Inhalt Ihrer E-Mails und Ereignisse wird mit Ihrem Team geteilt."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "Ihr Name, wie er angezeigt wird"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Ihr Name, wie er in der App angezeigt wird"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Ενέργειες χρηστών που μπορούν να εκτελέσουν σε αυτό το αντικείμενο"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Ενεργοποίηση"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Ενεργοποίηση διεργασιών"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Προσθήκη \"{trimmedName}\" στις επιλογές"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Προσθήκη {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Προσθήκη κόμβου"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Όλα έτοιμα!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Παρουσιάστηκε σφάλμα κατά τη μεταφόρτω
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Αύξουσα"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Ρώτησε την AI"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Συνημμένα"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "μεταξύ του {startOrdinal} και {endOrdinal} του μήνα"
|
||||
msgid "Billing"
|
||||
msgstr "Χρέωση"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Ακύρωση αλλαγής τιμολογιακής βαθμίδας;"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Ακύρωση σχεδίου"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Ακύρωση αλλαγής προγράμματος;"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Ακύρωση της συνδρομής σας"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Διαμόρφωση εναλλακτικών μεθόδων σύνδεσης για χρήστες με δικαιώματα παράκαμψης SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Ρύθμιση φίλτρων"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Συνέχεια"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Κόστος ανά 1k επιπλέον πιστώσεις"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Δεν ήταν δυνατή η διαγραφή του εγκεκριμένου domain πρόσβασης"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Προσαρμοσμένος τομέας ενημερώθηκε"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Προσαρμοσμένα αντικείμενα"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Επεξεργασία τρόπου πληρωμής, προβολή των τιμολογίων σου και άλλα"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Ενισχύει την ασφάλεια απαιτώντας έναν
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Απολαύστε μια δωρεάν δοκιμαστική περίοδο {withCreditCardTrialPeriodDuration} ημερών"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Εισάγετε το κλειδί API σας"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Επιχειρήσεις"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Επιχειρήσεις"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Διαγραφή εγγραφών που έχουν διαγραφεί
|
||||
msgid "Error"
|
||||
msgstr "Σφάλμα"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Σφάλμα κατά τη διαγραφή του παρόχου ταυ
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Σφάλμα κατά την επεξεργασία του παρόχου ταυτότητας SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Σφάλμα κατά την ανάκτηση μετρικών εργατών: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Σφάλμα φόρτωσης μηνύματος"
|
||||
msgid "Error Message"
|
||||
msgstr "Μήνυμα λάθους"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Σφάλμα ανάλυσης πρόσθετων τηλεφώνων: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Επιλογές κανόνα ομάδας φίλτρων"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Φίλτρα"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Όνομα"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Το μικρό όνομα δεν μπορεί να είναι κενό"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Φάκελοι"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Δημιουργημένα αρχεία"
|
||||
msgid "German"
|
||||
msgstr "Γερμανικά"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Παγκόσμιο"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Εισερχόμενα"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Εκκίνηση χειροκίνητα"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Μικρότερο από ή ίσο"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Διαχείριση χρέωσης και συνδρομών"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Διαχείριση πληροφοριών χρέωσης"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Μήνας του έτους"
|
||||
msgid "monthly"
|
||||
msgstr "μηνιαία"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Μετακίνηση δεξιά"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Χωρίς αρχεία"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Κανένας φάκελος"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Χωρίς αποτελέσματα"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Δεν βρέθηκαν αποτελέσματα"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Ο σύνδεσμος για την επαναφορά του κωδικ
|
||||
msgid "Paste the code below"
|
||||
msgstr "Επικολλήστε τον παρακάτω κωδικό"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Διαδρομή"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Επιλέξτε μια καταγραφή {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Ενημερώσεις"
|
||||
msgid "Reload"
|
||||
msgstr "Ανανέωση"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Αποτέλεσμα"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Αποτελέσματα"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Αναζήτηση"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Αναζήτηση πεδίου..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Αναζήτηση εγγραφών"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "θέση / μήνας"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "θέση / μήνας - χρέωση ετησίως"
|
||||
@@ -12739,7 +12558,6 @@ msgstr "Ενιαίο Σύστημα Εισόδου"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12784,16 +12602,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Έναρξη"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12819,11 +12627,6 @@ msgid "State"
|
||||
msgstr "Κατάσταση"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13119,11 +12922,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13426,11 +13229,6 @@ msgstr "Υπάρχουν απαιτούμενες στήλες που δεν α
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Υπάρχουν ακόμα γραμμές που περιέχουν λάθη. Οι γραμμές με λάθη θα αγνοηθούν κατά την υποβολή."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13545,9 +13343,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Αυτή η τιμή βάσης δεδομένων υπερισχύει των ρυθμίσεων περιβάλλοντος."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13856,8 +13654,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Δοκιμή"
|
||||
@@ -14048,7 +13844,7 @@ msgid "Type anything..."
|
||||
msgstr "Πληκτρολογήστε οτιδήποτε..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14206,11 +14002,6 @@ msgstr "Απεριόριστες επαφές"
|
||||
msgid "Unlisted"
|
||||
msgstr "Μη καταχωρισμένο"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14280,11 +14071,6 @@ msgstr "ενημέρωση"
|
||||
msgid "Update"
|
||||
msgstr "Ενημέρωση"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14523,22 +14309,11 @@ msgstr "Χρησιμοποιώντας την προεπιλεγμένη τιμ
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Χρησιμοποιώντας την προεπιλεγμένη τιμή. Ορίστε μια προσαρμοσμένη τιμή για υπερισχύ."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Επικύρωση δεδομένων"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14665,8 +14440,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Προβολή λεπτομερειών χρέωσης"
|
||||
@@ -14716,11 +14489,6 @@ msgstr "ομάδα προβολής"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14739,7 +14507,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Εμφάνιση Προηγούμενων Συνομιλιών AI"
|
||||
|
||||
@@ -15089,7 +14856,6 @@ msgstr "Ροές Εργασίας"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15256,11 +15022,6 @@ msgstr "Έτος"
|
||||
msgid "yearly"
|
||||
msgstr "ετήσια"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15393,36 +15154,6 @@ msgstr "Τα θέματα των email σας και οι τίτλοι συνα
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Το περιεχόμενο των email σας και των γεγονότων σας θα μοιραστεί με την ομάδα σας."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15433,26 +15164,6 @@ msgstr "Το όνομά σας όπως θα εμφανίζεται"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Το όνομά σας όπως θα εμφανίζεται στην εφαρμογή"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -747,37 +747,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Actions users can perform on this object"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Activate"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr "Activate Enterprise Key"
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Activate Workflow"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr "Activating..."
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -815,13 +801,6 @@ msgstr "Add \"{trimmedName}\" to options"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Add a {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr "Add a Group"
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -834,10 +813,16 @@ msgid "Add a node"
|
||||
msgstr "Add a node"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr "Add a record"
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr "Add a Section"
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1439,7 +1424,7 @@ msgid "All set!"
|
||||
msgstr "All set!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr "All system objects are already in the sidebar"
|
||||
|
||||
@@ -1584,7 +1569,6 @@ msgstr "An error occurred while uploading the picture."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1675,7 +1659,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1952,7 +1935,6 @@ msgstr "Ascending"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Ask AI"
|
||||
|
||||
@@ -2091,11 +2073,6 @@ msgstr "Attach files"
|
||||
msgid "Attachments"
|
||||
msgstr "Attachments"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr "Audit logs"
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2324,11 +2301,6 @@ msgstr "between the {startOrdinal} and {endOrdinal} of the month"
|
||||
msgid "Billing"
|
||||
msgstr "Billing"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr "Billing history"
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2586,7 +2558,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Cancel metered tier switching?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Cancel Plan"
|
||||
@@ -2602,26 +2573,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Cancel plan switching?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancel your subscription"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr "Canceled"
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr "Cancelling"
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr "Cancels on"
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3117,6 +3072,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: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Configure filters"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3314,7 +3274,6 @@ msgstr "Context window"
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continue"
|
||||
@@ -3474,21 +3433,6 @@ msgstr "Cost per 1k Extra Credits"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Could not delete approved access domain"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr "Could not open Stripe. Please contact support."
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr "Could not refresh validity token. Please contact support."
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3866,7 +3810,6 @@ msgstr "Custom domain updated"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Custom objects"
|
||||
|
||||
@@ -4969,8 +4912,6 @@ msgid "Edit own profile information"
|
||||
msgstr "Edit own profile information"
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Edit payment method, see your invoices and more"
|
||||
@@ -5270,11 +5211,6 @@ msgstr "Enhances security by requiring a code along with your password"
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr "Enjoy a 30-day free trial"
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5481,9 +5417,6 @@ msgstr "Enter your API key"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Enterprise"
|
||||
|
||||
@@ -5492,22 +5425,6 @@ msgstr "Enterprise"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr "Enterprise Feature"
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr "Enterprise License"
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr "Enterprise license activated successfully"
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5548,11 +5465,6 @@ msgstr "Erasure of soft-deleted records"
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr "Error activating enterprise license"
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5578,6 +5490,11 @@ msgstr "Error deleting SSO Identity Provider"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Error editing SSO Identity Provider"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Error fetching worker metrics: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5608,26 +5525,11 @@ msgstr "Error loading message"
|
||||
msgid "Error Message"
|
||||
msgstr "Error Message"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr "Error opening billing portal"
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr "Error opening Stripe"
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Error parsing additional phones: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr "Error refreshing validity token. Please contact support."
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6090,11 +5992,6 @@ msgstr "Failed to {translatedOperationType} {translatedMetadataName}. Please try
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr "Failed to activate enterprise license. Please check your key or contact support."
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6472,6 +6369,7 @@ msgstr "Files"
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6494,7 +6392,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Filter group rule options"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filters"
|
||||
@@ -6565,11 +6462,6 @@ msgstr "First Name"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "First name can not be empty"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr "Fix the payment issue to keep your enterprise features active."
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6589,7 +6481,7 @@ msgid "Folder name"
|
||||
msgstr "Folder name"
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Folders"
|
||||
@@ -6738,22 +6630,6 @@ msgstr "Generated Files"
|
||||
msgid "German"
|
||||
msgstr "German"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr "Get Enterprise"
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr "Get Enterprise Key"
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6774,12 +6650,6 @@ msgstr "Global"
|
||||
msgid "Go Back"
|
||||
msgstr "Go Back"
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr "Go to billing portal"
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7365,11 +7235,6 @@ msgstr "Inactive Skill Options"
|
||||
msgid "Inbox"
|
||||
msgstr "Inbox"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr "Incomplete"
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8012,8 +7877,9 @@ msgid "Launch manually"
|
||||
msgstr "Launch manually"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8086,12 +7952,6 @@ msgstr "Legend"
|
||||
msgid "Less than or equal"
|
||||
msgstr "Less than or equal"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr "Licensee"
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8395,8 +8255,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Manage billing and subscriptions"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Manage billing information"
|
||||
@@ -8749,11 +8607,6 @@ msgstr "Month of the year"
|
||||
msgid "monthly"
|
||||
msgstr "monthly"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr "Monthly subscription"
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8815,7 +8668,7 @@ msgid "Move right"
|
||||
msgstr "Move right"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr "Move to a folder"
|
||||
|
||||
@@ -9416,13 +9269,13 @@ msgid "No Files"
|
||||
msgstr "No Files"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "No folder"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr "No folders available"
|
||||
|
||||
@@ -9596,8 +9449,8 @@ msgstr "No Results"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "No results found"
|
||||
@@ -10330,26 +10183,11 @@ msgstr "Password reset link has been sent to the email"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Paste the code below"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr "Paste your enterprise key below to activate"
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr "Paste your enterprise key here"
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Path"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr "Payment issue"
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10486,13 +10324,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Pick a {objectLabel} record"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr "Pick a view"
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr "Pick an object"
|
||||
|
||||
@@ -11110,16 +10948,6 @@ msgstr "Releases"
|
||||
msgid "Reload"
|
||||
msgstr "Reload"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr "Reload validity token"
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr "Reloading..."
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11395,7 +11223,7 @@ msgstr "Result"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Results"
|
||||
|
||||
@@ -11534,11 +11362,6 @@ msgstr "row level permission predicate"
|
||||
msgid "row level permission predicate group"
|
||||
msgstr "row level permission predicate group"
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr "Row-level security"
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11657,8 +11480,6 @@ msgstr "Score"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
@@ -11695,7 +11516,7 @@ msgid "Search a field..."
|
||||
msgstr "Search a field..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr "Search a folder..."
|
||||
|
||||
@@ -11863,7 +11684,7 @@ msgid "Search records"
|
||||
msgstr "Search records"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr "Search records..."
|
||||
|
||||
@@ -11898,13 +11719,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr "Searching the web for {query}"
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "seat / month"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "seat / month - billed yearly"
|
||||
@@ -12732,7 +12551,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12777,16 +12595,6 @@ msgstr "Standard tools available to AI agents"
|
||||
msgid "Start"
|
||||
msgstr "Start"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr "Start a new enterprise subscription to re-enable enterprise features."
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr "Start a new enterprise subscription."
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12812,11 +12620,6 @@ msgid "State"
|
||||
msgstr "State"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13112,11 +12915,11 @@ msgstr "System fields"
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr "System objects"
|
||||
@@ -13419,11 +13222,6 @@ msgstr "There are required columns that are not matched or ignored. Do you want
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr "There is a payment issue with your subscription. Please update your payment method."
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13538,10 +13336,10 @@ msgstr "This application is not listed on the marketplace. It was shared via a d
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "This database value overrides environment settings. "
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgstr "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr "This feature is part of the Organization Plan"
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
#: src/modules/activities/files/components/DocumentViewer.tsx
|
||||
@@ -13849,8 +13647,6 @@ msgid "Transfer ownership"
|
||||
msgstr "Transfer ownership"
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Trial"
|
||||
@@ -14041,7 +13837,7 @@ msgid "Type anything..."
|
||||
msgstr "Type anything..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr "Type to search records"
|
||||
|
||||
@@ -14199,11 +13995,6 @@ msgstr "Unlimited contacts"
|
||||
msgid "Unlisted"
|
||||
msgstr "Unlisted"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
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: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14273,11 +14064,6 @@ msgstr "update"
|
||||
msgid "Update"
|
||||
msgstr "Update"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr "Update payment method"
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14516,22 +14302,11 @@ msgstr "Using default application value. Configure via environment variables."
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Using default value. Set a custom value to override."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr "Valid until"
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Validate Data"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr "Validity token refreshed successfully"
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14658,8 +14433,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr "View and filter events, page views, object changes"
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "View billing details"
|
||||
@@ -14709,11 +14482,6 @@ msgstr "view group"
|
||||
msgid "View installed app"
|
||||
msgstr "View installed app"
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr "View invoices"
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14732,7 +14500,6 @@ msgstr "View marketplace page"
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "View Previous AI Chats"
|
||||
|
||||
@@ -15082,7 +14849,6 @@ msgstr "Workflows"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15249,11 +15015,6 @@ msgstr "Year"
|
||||
msgid "yearly"
|
||||
msgstr "yearly"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr "Yearly subscription"
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15386,36 +15147,6 @@ msgstr "Your email subjects and meeting titles will be shared with your team."
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Your emails and events content will be shared with your team."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr "Your enterprise features are active"
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr "Your enterprise features will be disabled"
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr "Your enterprise features will remain active until {cancelAtDate}."
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr "Your enterprise subscription has been canceled."
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15426,26 +15157,6 @@ msgstr "Your name as it will be displayed"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Your name as it will be displayed on the app"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr "Your subscription is scheduled for cancellation"
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr "Your subscription setup was not completed."
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr "Your subscription status is: {statusLabel}"
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Acciones que los usuarios pueden realizar en este objeto"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Activar"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Activar workflow"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Agregar \"{trimmedName}\" a las opciones"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Agregar un {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Añadir un nodo"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "¡Todo listo!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Se produjo un error al subir la imagen."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API y Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Ascendente"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Preguntar a IA"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Adjuntos"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "entre el {startOrdinal} y {endOrdinal} del mes"
|
||||
msgid "Billing"
|
||||
msgstr "Facturación"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "¿Cancelar cambio de nivel medido?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Cancelar plan"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "¿Cancelar cambio de plan?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Cancelar su suscripción"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configurar métodos de inicio de sesión de respaldo para usuarios con permisos para omitir SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Configurar filtros"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continuar"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Costo por cada 1k Créditos Extra"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "No se pudo eliminar el dominio de acceso aprobado"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Dominio personalizado actualizado"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Objetos personalizados"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr "Edita tu información del perfil"
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Editar la forma de pago, ver sus facturas y más"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Mejora la seguridad al requerir un código junto con tu contraseña"
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Disfrute de {withCreditCardTrialPeriodDuration} días de prueba gratis"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Introduce tu clave de API"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Empresa"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Empresa"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Borrado de registros eliminados suavemente"
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Error al eliminar el Proveedor de Identidad SSO"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Error al editar el Proveedor de Identidad SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Error al obtener métricas del trabajador: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Error al cargar el mensaje"
|
||||
msgid "Error Message"
|
||||
msgstr "Mensaje de error"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Error al analizar teléfonos adicionales: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Opciones de reglas del grupo de filtros"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filtros"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Nombre"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "El nombre no puede estar vacío"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Carpetas"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Archivos generados"
|
||||
msgid "German"
|
||||
msgstr "Alemán"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Global"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Bandeja de entrada"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Lanzar manualmente"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Menor o igual"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Administrar a facturación y suscripciones"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Administrar la información de facturación"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Mes del año"
|
||||
msgid "monthly"
|
||||
msgstr "mensual"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Mover a la derecha"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Sin archivos"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Sin carpeta"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Sin resultados"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "No se encontraron resultados"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "El enlace de restablecimiento de contraseña ha sido enviado al correo e
|
||||
msgid "Paste the code below"
|
||||
msgstr "Pega el código a continuación"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Ruta"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Selecciona un registro de {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Lanzamientos"
|
||||
msgid "Reload"
|
||||
msgstr "Recargar"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Resultado"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultados"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Buscar un campo..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Buscar registros"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "asiento / mes"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "asiento / mes - facturado anualmente"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Comenzar"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr "Objetos del sistema"
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Hay columnas requeridas que no están asignadas o ignoradas. ¿Quieres c
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Todavía hay algunas filas que contienen errores. Las filas con errores serán ignoradas al enviar."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13543,9 +13341,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Este valor de base de datos anula la configuración del entorno."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13854,8 +13652,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Prueba"
|
||||
@@ -14046,7 +13842,7 @@ msgid "Type anything..."
|
||||
msgstr "Escribe cualquier cosa..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14204,11 +14000,6 @@ msgstr "Contactos ilimitados"
|
||||
msgid "Unlisted"
|
||||
msgstr "No listadas"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14278,11 +14069,6 @@ msgstr "actualizar"
|
||||
msgid "Update"
|
||||
msgstr "Actualizar"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14521,22 +14307,11 @@ msgstr "Usando el valor de aplicación predeterminado. Configurar a través de v
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Usando el valor predeterminado. Establece un valor personalizado para anular."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Validar datos"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14663,8 +14438,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Ver detalles de facturación"
|
||||
@@ -14714,11 +14487,6 @@ msgstr "grupo de vista"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14737,7 +14505,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Ver chats previos de IA"
|
||||
|
||||
@@ -15087,7 +14854,6 @@ msgstr "Workflows"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15254,11 +15020,6 @@ msgstr "Año"
|
||||
msgid "yearly"
|
||||
msgstr "anual"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15391,36 +15152,6 @@ msgstr "Los asuntos de tus correos electrónicos y los títulos de las reuniones
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "El contenido de tus correos electrónicos y eventos se compartirá con tu equipo."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15431,26 +15162,6 @@ msgstr "Tu nombre tal y como se mostrará"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Tu nombre tal y como será mostrado en la aplicación"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Toiminnot, joita käyttäjät voivat suorittaa tällä kohteella"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Aktivoi"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Aktivoi työnkulku"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Lisää \"{trimmedName}\" valintoihin"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Lisää {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Lisää solmu"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Valmista!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Kuvaa ladattaessa tapahtui virhe."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "Rajapinta"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Nouseva"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Kysy AI:lta"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Liitteet"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "kuukauden {startOrdinal} ja {endOrdinal} päivän välillä"
|
||||
msgid "Billing"
|
||||
msgstr "Laskutus"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Peruuta mitatun tason vaihtaminen?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Peruuta suunnitelma"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Peruuta suunnitelman vaihtaminen?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Peruuta tilauksesi"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Määritä varasijaiset kirjautumismenetelmät käyttäjille, joilla on SSO-ohituksen käyttöoikeudet"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Määritä suodattimet"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Jatka"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Kustannus per 1k ylimääräiset hyvitykset"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Hyväksyttyä pääsyoikeutta ei voitu poistaa"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Mukautettu verkkotunnus päivitetty"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Mukautetut objektit"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Muokkaa maksutapaa, näe laskusi ja paljon muuta"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Parantaa turvallisuutta vaatimalla koodin salasanasi lisäksi"
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Nauti {withCreditCardTrialPeriodDuration}-päiväisen ilmaisen kokeilun"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Anna API-avaimesi"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Yritys"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Yritys"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Pehmeästi poistettujen tietueiden poistaminen"
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Virhe SSO-identiteetintarjoajan poistamisessa"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Virhe SSO-identiteetintarjoajan muokkaamisessa"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Virhe noudettaessa työntekijän mittareita: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Virhe ladattaessa viestiä"
|
||||
msgid "Error Message"
|
||||
msgstr "Virheilmoitus"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Virhe jäsennettäessä lisäpuhelinnumeroita: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Suodatinryhmän säännön valinnat"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Suodattimet"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Etunimi"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Etunimi ei saa olla tyhjä"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Kansiot"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Luodut tiedostot"
|
||||
msgid "German"
|
||||
msgstr "Saksa"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Globaali"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Saapuneet"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Käynnistä manuaalisesti"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Pienempi tai yhtä suuri"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Hallinnoi laskutusta ja tilauksia"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Hallinnoi laskutustietoja"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Vuoden kuukausi"
|
||||
msgid "monthly"
|
||||
msgstr "kuukausittain"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Siirrä oikealle"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Ei tiedostoja"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Ei kansiota"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Ei tuloksia"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Tuloksia ei löytynyt"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Salasanan palautuslinkki on lähetetty sähköpostiin"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Liitä alla oleva koodi"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Polku"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Valitse {objectLabel} tietue"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Julkaisut"
|
||||
msgid "Reload"
|
||||
msgstr "Lataa uudelleen"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Tulos"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Tulokset"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Hae"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Etsi kenttää..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Hae tietueita"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "paikka / kuukausi"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "paikka / kuukausi - laskutetaan vuosittain"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "Kertakirjautuminen"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Aloita"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Tila"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "On sarakkeita, joita ei ole yhdistetty tai ohitettu. Haluatko jatkaa?"
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Joitakin rivejä, jotka sisältävät virheitä, on edelleen. Virheelliset rivit ohitetaan lähetettäessä."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Tämä tietokanta-arvo ohittaa ympäristöasetukset."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Koe"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "Kirjoita jotain..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "Rajattomat yhteystiedot"
|
||||
msgid "Unlisted"
|
||||
msgstr "Listaamattomat"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "päivitä"
|
||||
msgid "Update"
|
||||
msgstr "Päivitä"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "Käytetään sovelluksen oletusarvoa. Määritä ympäristömuuttujien k
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Käytetään oletusarvoa. Aseta mukautettu arvo ohittaaksesi."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Vahvista tiedot"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Näytä laskutustiedot"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "näkymäryhmä"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Näytä edelliset AI Keskustelut"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "Työnkulut"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "Vuosi"
|
||||
msgid "yearly"
|
||||
msgstr "vuosittain"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "Sähköpostiesi aiheet ja tapaamisen otsikot jaetaan tiimisi kanssa."
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Sähköpostiesi ja tapahtumien sisältö jaetaan tiimisi kanssa."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "Nimesi, niin kuin se näytetään"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Nimesi, niin kuin se näytetään sovelluksessa"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Actions que les utilisateurs peuvent effectuer sur cet objet"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Activer"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Activer le workflow"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Ajouter \"{trimmedName}\" aux options"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Ajouter un {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Ajouter un nœud"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Tout est prêt !"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Une erreur s'est produite lors du téléversement de l'image."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Ascendant"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Demander à l'IA"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Pièces jointes"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "entre le {startOrdinal} et le {endOrdinal} du mois"
|
||||
msgid "Billing"
|
||||
msgstr "Facturation"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Annuler le changement de niveau mesuré ?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Annuler le plan"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Annuler le changement de plan ?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Annuler votre abonnement"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configurer les méthodes de connexion de secours pour les utilisateurs avec des permissions de contournement du SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Configurer les filtres"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continuer"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Coût pour 1k de crédits supplémentaires"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Impossible de supprimer le domaine d'accès approuvé"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Domaine personnalisé mis à jour"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Objets personnalisés"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Modifier le mode de paiement, consulter vos factures et plus encore"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Améliore la sécurité en exigeant un code en plus de votre mot de pass
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Profitez d'un essai gratuit de {withCreditCardTrialPeriodDuration} jours"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Saisissez votre clé API"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Entreprise"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Entreprise"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Effacement des enregistrements supprimés en douceur"
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Erreur lors de la suppression du fournisseur d'identité SSO"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Erreur lors de la modification du fournisseur d'identité SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Erreur lors de la récupération des métriques du worker : {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Erreur de chargement du message"
|
||||
msgid "Error Message"
|
||||
msgstr "Message d'erreur"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Erreur lors de l'analyse des numéros supplémentaires : {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Options des règles du groupe de filtres"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filtres"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Prénom"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Le prénom ne peut pas être vide"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Dossiers"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Fichiers générés"
|
||||
msgid "German"
|
||||
msgstr "Allemand"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Global"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Boîte de réception"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Lancer manuellement"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Inférieur ou égal à"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Gérer les facturations et les abonnements"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Gérer les informations de facturation"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Mois de l'année"
|
||||
msgid "monthly"
|
||||
msgstr "mensuel"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Déplacer à droite"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Aucun fichier"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Aucun dossier"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Aucun résultat"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Aucun résultat trouvé"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Le lien de réinitialisation du mot de passe a été envoyé à l'email"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Collez le code ci-dessous"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Chemin"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Choisissez un enregistrement de {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Communiqués"
|
||||
msgid "Reload"
|
||||
msgstr "Recharger"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Résultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Résultats"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Recherche"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Rechercher un champ..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Rechercher des enregistrements"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "siège / mois"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "siège / mois - facturé annuellement"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Démarrer"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Il y a des colonnes requises qui ne sont pas appariées ou ignorées. Vo
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Il y a encore des lignes qui contiennent des erreurs. Les lignes présentant des erreurs seront ignorées lors de l'envoi."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13543,9 +13341,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Cette valeur de base de données remplace les paramètres d'environnement."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13854,8 +13652,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Essai"
|
||||
@@ -14046,7 +13842,7 @@ msgid "Type anything..."
|
||||
msgstr "Tapez n'importe quoi..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14204,11 +14000,6 @@ msgstr "Contacts illimités"
|
||||
msgid "Unlisted"
|
||||
msgstr "Non répertorié"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14278,11 +14069,6 @@ msgstr "mettre à jour"
|
||||
msgid "Update"
|
||||
msgstr "Mettre à jour"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14521,22 +14307,11 @@ msgstr "Valeur de l'application par défaut utilisée. Configurez via les variab
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Utilisation de la valeur par défaut. Définissez une valeur personnalisée pour surcharger."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Valider les données"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14663,8 +14438,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Voir les détails de facturation"
|
||||
@@ -14714,11 +14487,6 @@ msgstr "groupe de vue"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14737,7 +14505,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Voir les Discussions AI Précédentes"
|
||||
|
||||
@@ -15087,7 +14854,6 @@ msgstr "Workflows"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15254,11 +15020,6 @@ msgstr "Année"
|
||||
msgid "yearly"
|
||||
msgstr "annuel"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15391,36 +15152,6 @@ msgstr "Les sujets de vos emails et les titres de réunion seront partagés avec
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Le contenu de vos emails et événements sera partagé avec votre équipe."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15431,26 +15162,6 @@ msgstr "Votre nom tel qu'il sera affiché"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Votre nom tel qu'il sera affiché sur l'application"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
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
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "פעולות משתמשים יכולים לבצע על אובייקט זה"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "הפעל"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "הפוך Workflows לפעיל"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "הוסף \"{trimmedName}\" לאפשרויות"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "הוסף {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "הוסף צומת"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "הכול מוכן!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "אירעה שגיאה בעת העלאת התמונה."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API ו-Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "עולה"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "שאל את ה-AI"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "קבצים מצורפים"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "בין ה-{startOrdinal} ובין ה-{endOrdinal} של החודש"
|
||||
msgid "Billing"
|
||||
msgstr "חיוב"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "האם לבטל את החלפת רמת המדידה?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "בטל תוכנית"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "האם לבטל את החלפת התכנית?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "בטל את המינוי שלך"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "הגדר שיטות כניסה חלופיות למשתמשים עם הרשאות עקיפת SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "קביעת תצורת מסננים"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "המשך"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "עלות לכל אלף נקודות"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "לא ניתן למחוק את הדומיין המאושר גישה"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "הדומיין המותאם עודכן"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "עצמים מותאמים אישית"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "ערוך שיטת תשלום, צפה בחשבוניות שלך ועוד"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "משפר את האבטחה על ידי דרישה לקוד יחד עם
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "תהנה מתקופת ניסיון חינם של {withCreditCardTrialPeriodDuration} ימים"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "הזן את מפתח ה-API שלך"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "אנטרפרייז"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "אנטרפרייז"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "מחיקת רשומות שנמחקו ברכות"
|
||||
msgid "Error"
|
||||
msgstr "שגיאה"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "שגיאה במחיקת ספק זיהוי SSO"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "שגיאה בעריכת ספק זיהוי SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "שגיאה באחזור מדדי העובד: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "שגיאה בטעינת ההודעה"
|
||||
msgid "Error Message"
|
||||
msgstr "הודעת שגיאה"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "שגיאה בניתוח מספרי טלפון נוספים: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "אפשרויות כלל של קבוצת סינון"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "מסננים"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "שם פרטי"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "שם פרטי לא יכול להיות ריק"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "תיקיות"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "קבצים שנוצרו"
|
||||
msgid "German"
|
||||
msgstr "גרמנית"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "גלובלי"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "תיבת דואר"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "הפעל ידנית"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "או קטן יותר"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "נהל חיובים ומנויים"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "נהל מידע לתשלום"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "חודש בשנה"
|
||||
msgid "monthly"
|
||||
msgstr "חודשי"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "הזזה ימינה"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "אין קבצים"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "אין תיקייה"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "אין תוצאות"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "לא נמצאו תוצאות"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "קישור לאיפוס הסיסמה נשלח לדוא\"ל"
|
||||
msgid "Paste the code below"
|
||||
msgstr "הדבק את הקוד למטה"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "נתיב"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "בחר רשומת {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "\\"
|
||||
msgid "Reload"
|
||||
msgstr "טען מחדש"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "תוצאה"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "\\"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "\\"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "חפש שדה..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "\\"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "מושב / חודש"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "מושב / חודש - מחויב שנתי"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "\\"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "התחילו"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "מצב"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "יש עמודות נדרשות שלא הותאמו או שלא נכלל
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "עדיין ישנן שורות המכילות שגיאות. שורות עם שגיאות יזנחו בעת שליחה."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "ערך בסיס הנתונים הזה גובר על הגדרות הסביבה."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "ניסיון"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "הקלד כל דבר..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "אין מגבלה על מספר אנשי הקשר"
|
||||
msgid "Unlisted"
|
||||
msgstr "לא מופיע ברשימה"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "עדכן"
|
||||
msgid "Update"
|
||||
msgstr "עדכן"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "משתמש בערך היישום המחדלי. קבע דרך משתני
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "משתמש בערך ברירת מחדל. הגדר ערך מותאם אישית כדי לעקוף."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "אמת נתונים"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "צפייה בפרטי החשבונית"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "קבוצת תצוגה"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "הצג שיחות AI קודמות"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "זרימות עבודה"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "שנה"
|
||||
msgid "yearly"
|
||||
msgstr "שנתי"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "נושאי האימיילים שלך והכותרות של מפגשים
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "התוכן של האימיילים והאירועים שלך ישותפו עם הצוות שלך."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "השם שלך כפי שיהיה מוצג"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "השם שלך כפי שיהיה מוצג באפליקציה"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Műveletek, amelyeket a felhasználók ezen az objektumon végrehajthatnak"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Aktiválás"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Munkafolyamat aktiválása"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "\"{trimmedName}\" hozzáadása az opciókhoz"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Új {objectLabelSingular} hozzáadása"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Csomópont hozzáadása"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Minden kész!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Hiba történt a kép feltöltése közben."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Növekvő"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Kérdezze a MI-t"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Csatolmányok"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "a hónap {startOrdinal}. és {endOrdinal}. napja között"
|
||||
msgid "Billing"
|
||||
msgstr "Számlázás"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Mérőszint-váltás törlése?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Terv lemondása"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Csomagváltás törlése?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Előfizetése lemondása"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Helyettesítő bejelentkezési módszerek konfigurálása az SSO kikerülési jogosultságokkal rendelkező felhasználók számára"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Szűrők konfigurálása"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Folytatás"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Költség 1k extra kreditenként"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Nem sikerült törölni a jóváhagyott hozzáférési tartományt"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Egyéni domain frissítve"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Egyéni objektumok"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Fizetési mód szerkesztése, számlák megtekintése és egyéb"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Növeli a biztonságot azzal, hogy kódot is megkövetel a jelszó melle
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Élvezd a {withCreditCardTrialPeriodDuration}-napos ingyenes próbaidőszakot"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Adja meg az API-kulcsát"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Vállalati"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Vállalati"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Lágyított adatok törlése"
|
||||
msgid "Error"
|
||||
msgstr "Hiba"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Hiba az SSO identitásszolgáltató törlése közben"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Hiba az SSO identitásszolgáltató szerkesztése közben"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Hiba a worker metrikák lekérésekor: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Hiba történt az üzenet betöltésekor"
|
||||
msgid "Error Message"
|
||||
msgstr "Hibaüzenet"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Hiba a további telefonszámok feldolgozása közben: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Szűrőcsoport szabályainak beállításai"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Szűrők"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Keresztnév"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "A keresztnév nem lehet üres"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Mappák"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "Létrehozott fájlok"
|
||||
msgid "German"
|
||||
msgstr "Német"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Globális"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Postafiók"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Indítás manuálisan"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Kisebb vagy egyenlő"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Számlázás és előfizetések kezelése"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Számlázási információk kezelése"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Az év hónapja"
|
||||
msgid "monthly"
|
||||
msgstr "havi"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Mozgatás jobbra"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Nincsenek fájlok"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Nincs mappa"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Nincs találat"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nincs találat"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "A jelszó visszaállítási linket elküldtük az e-mail címre"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Illessze be az alábbi kódot"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Útvonal"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Válasszon egy {objectLabel} rekordot"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Kiadások"
|
||||
msgid "Reload"
|
||||
msgstr "Újratöltés"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Eredmény"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Találatok"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Keresés"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Mező keresése..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Rekordok keresése"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "hely / hónap"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "hely / hónap - évente számlázva"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Indítás"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Állapot"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Vannak olyan kötelező oszlopok, amelyek nincsenek egyeztetve vagy figy
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Még mindig vannak hibákat tartalmazó sorok. A hibás sorokat figyelmen kívül hagyják a beküldéskor."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Ez az adatbázis-érték felülírja a környezeti beállításokat. "
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Próbaidőszak"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "Írjon be bármit..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "Korlátlan névjegyek"
|
||||
msgid "Unlisted"
|
||||
msgstr "Nem listázott"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "frissítés"
|
||||
msgid "Update"
|
||||
msgstr "Frissítés"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "Alapértelmezett alkalmazási érték használata. Konfiguráljon körny
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Alapértelmezett érték használata. Állítson be egy egyéni értéket az felülíráshoz."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Adat érvényesítése"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Számlázási részletek megtekintése"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "nézetcsoport"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Előző AI csevegések megtekintése"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "Munkafolyamatok"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "Év"
|
||||
msgid "yearly"
|
||||
msgstr "éves"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "Az Ön email tárgyai és találkozó címei megosztásra kerülnek a cs
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Az Ön emailjei és eseménytartalma megosztásra kerülnek a csapatával."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "A neve úgy, ahogy látható lesz"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Az Ön neve, ahogy az alkalmazáson megjelenik"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "Azioni che gli utenti possono eseguire su questo oggetto"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "Attiva"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "Attiva workflow"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "Aggiungi \"{trimmedName}\" alle opzioni"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "Aggiungi {objectLabelSingular}"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "Aggiungi un nodo"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "Tutto pronto!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "Si è verificato un errore durante il caricamento dell'immagine."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API e Webhook"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "Ascendente"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "Chiedi a AI"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "Allegati"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "tra il {startOrdinal} e {endOrdinal} del mese"
|
||||
msgid "Billing"
|
||||
msgstr "Fatturazione"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "Annulla il cambio di livello misurato?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "Annulla piano"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "Annulla il cambio di piano?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "Annulla l'abbonamento"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "Configura metodi di accesso alternativi per utenti con permessi di bypass SSO"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "Configura i filtri"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "Continua"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "Costo per 1k crediti extra"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "Impossibile eliminare il dominio di accesso approvato"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "Dominio personalizzato aggiornato"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "Oggetti personalizzati"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "Modifica il metodo di pagamento, visualizza le fatture e altro"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "Aumenta la sicurezza richiedendo un codice insieme alla tua password"
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "Goditi una prova gratuita di {withCreditCardTrialPeriodDuration} giorni"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "Inserisci la tua chiave API"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "Enterprise"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "Enterprise"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "Cancellazione dei record eliminati temporaneamente"
|
||||
msgid "Error"
|
||||
msgstr "Errore"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "Errore nell'eliminazione del provider di identità SSO"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "Errore nella modifica del provider di identità SSO"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "Errore durante il recupero delle metriche del worker: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "Errore nel caricamento del messaggio"
|
||||
msgid "Error Message"
|
||||
msgstr "Messaggio di errore"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "Errore nell'analisi dei numeri di telefono aggiuntivi: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "Opzioni del gruppo di regole del filtro"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "Filtri"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "Nome"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "Il nome non può essere vuoto"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "Cartelle"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "File generati"
|
||||
msgid "German"
|
||||
msgstr "Tedesco"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "Globale"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "Posta in arrivo"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "Avvia manualmente"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "Minore o uguale"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "Gestisci fatturazione e abbonamenti"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "Gestisci le informazioni di fatturazione"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "Mese dell'anno"
|
||||
msgid "monthly"
|
||||
msgstr "mensile"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "Sposta a destra"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "Nessun file"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "Nessuna cartella"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "Nessun risultato"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "Nessun risultato trovato"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "Il link per reimpostare la password è stato inviato all'e-mail"
|
||||
msgid "Paste the code below"
|
||||
msgstr "Incolla il codice qui sotto"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "Percorso"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "Seleziona un record di {objectLabel}"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "Rilasci"
|
||||
msgid "Reload"
|
||||
msgstr "Ricarica"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "Risultato"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "Risultati"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "Cerca un campo..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "Cerca record"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "posto / mese"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "posto / mese - fatturato annualmente"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "Inizia"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "Ci sono colonne richieste che non sono abbinate o ignorate. Vuoi continu
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "Ci sono ancora alcune righe che contengono errori. Le righe con errori verranno ignorate durante l'invio."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13543,9 +13341,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "Questo valore del database sovrascrive le impostazioni dell'ambiente."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13854,8 +13652,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "Prova"
|
||||
@@ -14046,7 +13842,7 @@ msgid "Type anything..."
|
||||
msgstr "Digita qualsiasi cosa..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14204,11 +14000,6 @@ msgstr "Contatti illimitati"
|
||||
msgid "Unlisted"
|
||||
msgstr "Non in elenco"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14278,11 +14069,6 @@ msgstr "aggiorna"
|
||||
msgid "Update"
|
||||
msgstr "Aggiorna"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14521,22 +14307,11 @@ msgstr "Utilizzando il valore predefinito dell'applicazione. Configura tramite v
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "Utilizzando il valore predefinito. Imposta un valore personalizzato per sovrascrivere."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "Convalida i dati"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14663,8 +14438,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "Visualizza dettagli fatturazione"
|
||||
@@ -14714,11 +14487,6 @@ msgstr "gruppo vista"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14737,7 +14505,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "Vedi chat AI precedenti"
|
||||
|
||||
@@ -15087,7 +14854,6 @@ msgstr "Workflows"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15254,11 +15020,6 @@ msgstr "Anno"
|
||||
msgid "yearly"
|
||||
msgstr "annuale"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15391,36 +15152,6 @@ msgstr "I tuoi oggetti delle email e i titoli delle riunioni verranno condivisi
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "Il contenuto delle tue email e degli eventi verrà condiviso con il tuo team."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15431,26 +15162,6 @@ msgstr "Il tuo nome come verrà visualizzato"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "Il tuo nome come sarà visualizzato sull'app"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "このオブジェクトにユーザーが行えるアクション"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "有効化"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "ワークフローを有効化"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "「{trimmedName}」をオプションに追加"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "{objectLabelSingular} を追加"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "ノードを追加する"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "準備完了!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "画像のアップロード中にエラーが発生しました。"
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API & Webhooks"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "昇順"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "AIに尋ねる"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "添付ファイル"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "月の {startOrdinal} から {endOrdinal} の間"
|
||||
msgid "Billing"
|
||||
msgstr "請求"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "メーター制ティア切替をキャンセルしますか?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "プランをキャンセル"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "プラン切替をキャンセルしますか?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "サブスクリプションをキャンセル"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "SSO バイパスの権限を持つユーザー用のフォールバックログイン方法を設定する"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "フィルターを設定"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "続行"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "1k追加クレジットあたりのコスト"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "承認されたアクセスドメインを削除できませんでした"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "カスタムドメインが更新されました"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "カスタムオブジェクト"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "支払い方法の編集、請求書の確認など"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "パスワードに加えてコードを要求することで、セキュ
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "{withCreditCardTrialPeriodDuration}日間の無料トライアルをお楽しみください。"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "API キーを入力"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "エンタープライズ"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "エンタープライズ"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "ソフト削除されたレコードの消去"
|
||||
msgid "Error"
|
||||
msgstr "エラー"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "SSOアイデンティティプロバイダーの削除エラー"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "SSOアイデンティティプロバイダーの編集エラー"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "ワーカーのメトリクスの取得中にエラーが発生しました: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "メッセージの読み込みエラー"
|
||||
msgid "Error Message"
|
||||
msgstr "エラーメッセージ"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "追加の電話番号の解析エラー: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "フィルターグループのルールオプション"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "フィルター"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "名"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "名は空にできません"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "フォルダー"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "生成されたファイル"
|
||||
msgid "German"
|
||||
msgstr "ドイツ語"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "グローバル"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "受信トレイ"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "手動で起動"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "以下"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "請求とサブスクリプションの管理"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "請求情報を管理する"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "月"
|
||||
msgid "monthly"
|
||||
msgstr "月払い"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "右に移動"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "ファイルなし"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "フォルダーなし"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "結果なし"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "結果が見つかりません"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "パスワードリセットリンクがメールに送信されました
|
||||
msgid "Paste the code below"
|
||||
msgstr "以下のコードを貼り付けてください"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "パス"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "{objectLabel}レコードを選択する"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "リリース"
|
||||
msgid "Reload"
|
||||
msgstr "リロード"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "結果"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "結果"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "検索"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "フィールドを検索..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "レコードを検索"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "座席 / 月"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "座席 / 月 - 年間請求"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO(SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "開始"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "状態"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "一致していないか無視された必須列があります。続行
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "エラーを含む行がまだいくつかあります。送信時にエラーのある行は無視されます。"
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "このデータベース値は環境設定を上書きします。"
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "トライアル"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "何でも入力..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "連絡先無制限"
|
||||
msgid "Unlisted"
|
||||
msgstr "非公開"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "更新"
|
||||
msgid "Update"
|
||||
msgstr "更新"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "デフォルトのアプリケーション値を使用しています。
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "デフォルト値を使用しています。カスタム値を設定して上書きしてください。"
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "データを検証"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "請求の詳細を表示"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "ビューグループ"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "以前のAIチャットを見る"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "ワークフロー"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "年"
|
||||
msgid "yearly"
|
||||
msgstr "年払い"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "メールの件名や会議タイトルがチームと共有されます
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "メールやイベントの内容がチームと共有されます。"
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "表示名"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "アプリ上での表示名"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
|
||||
msgstr "사용자가 이 객체에서 수행할 수 있는 작업"
|
||||
|
||||
#. js-lingui-id: FQBaXG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/data-model/SettingsObjectFieldEdit.tsx
|
||||
#: src/pages/settings/ai/SettingsSkillForm.tsx
|
||||
#: src/pages/settings/ai/components/SettingsSkillInactiveMenuDropDown.tsx
|
||||
#: 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/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate"
|
||||
msgstr "활성화"
|
||||
|
||||
#. js-lingui-id: eqeFkF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activate Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: tu8A/k
|
||||
#: src/modules/command-menu-item/record/constants/WorkflowCommandMenuItemsConfig.tsx
|
||||
msgid "Activate Workflow"
|
||||
msgstr "워크플로 활성화"
|
||||
|
||||
#. js-lingui-id: jSZacs
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Activating..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: F6pfE9
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/domains/components/SettingsWorkspaceDomainCard.tsx
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminQueueJobsTable.tsx
|
||||
msgid "Active"
|
||||
@@ -820,13 +806,6 @@ msgstr "\"{trimmedName}\"을 옵션에 추가하기"
|
||||
msgid "Add a {objectLabelSingular}"
|
||||
msgstr "{objectLabelSingular} 추가"
|
||||
|
||||
#. js-lingui-id: 7W8nJr
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupDropdown.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationEditor.tsx
|
||||
msgid "Add a Group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: CZDwqQ
|
||||
#: src/modules/ai/components/suggested-prompts/default-suggested-prompts.ts
|
||||
msgid "Add a new company we're in touch with (e.g. name, website, industry). Details: "
|
||||
@@ -839,10 +818,16 @@ msgid "Add a node"
|
||||
msgstr "노드 추가"
|
||||
|
||||
#. js-lingui-id: nGv1DN
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Add a record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: r8W+9y
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationUngroupedEditor.tsx
|
||||
#: src/modules/page-layout/widgets/fields/components/FieldsConfigurationGroupEditor.tsx
|
||||
msgid "Add a Section"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eMc2xs
|
||||
#: src/modules/workflow/workflow-diagram/components/WorkflowDiagramCreateStepElement.tsx
|
||||
msgid "Add a step"
|
||||
@@ -1444,7 +1429,7 @@ msgid "All set!"
|
||||
msgstr "준비 완료!"
|
||||
|
||||
#. js-lingui-id: CHvT6e
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectSystemPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemObjectFlow.tsx
|
||||
msgid "All system objects are already in the sidebar"
|
||||
msgstr ""
|
||||
|
||||
@@ -1589,7 +1574,6 @@ msgstr "사진을 업로드하는 중 오류가 발생했습니다."
|
||||
|
||||
#. js-lingui-id: XyOToQ
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/utils/get-error-message-from-apollo-error.util.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewSortAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewGroupAPIPersist.ts
|
||||
#: src/modules/views/hooks/internal/usePerformViewFilterAPIPersist.ts
|
||||
@@ -1680,7 +1664,6 @@ msgstr "API"
|
||||
#. js-lingui-id: 0RqpZr
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "API & Webhooks"
|
||||
msgstr "API 및 웹훅"
|
||||
|
||||
@@ -1957,7 +1940,6 @@ msgstr "오름차순"
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Ask AI"
|
||||
msgstr "AI에게 질문하기"
|
||||
|
||||
@@ -2096,11 +2078,6 @@ msgstr ""
|
||||
msgid "Attachments"
|
||||
msgstr "첨부 파일"
|
||||
|
||||
#. js-lingui-id: y2W2Hg
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Audit logs"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: EPEFrH
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/event-logs/SettingsEventLogs.tsx
|
||||
@@ -2329,11 +2306,6 @@ msgstr "매달의 {startOrdinal}일에서 {endOrdinal}일까지"
|
||||
msgid "Billing"
|
||||
msgstr "청구"
|
||||
|
||||
#. js-lingui-id: dSjFxR
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Billing history"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: nJGwRf
|
||||
#: src/modules/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
msgid "Billing interval"
|
||||
@@ -2591,7 +2563,6 @@ msgid "Cancel metered tier switching?"
|
||||
msgstr "계측된 계층 전환을 취소하시겠습니까?"
|
||||
|
||||
#. js-lingui-id: rRK/Lf
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel Plan"
|
||||
msgstr "요금제 취소"
|
||||
@@ -2607,26 +2578,10 @@ msgid "Cancel plan switching?"
|
||||
msgstr "플랜 전환을 취소하시겠습니까?"
|
||||
|
||||
#. js-lingui-id: N6gPiD
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Cancel your subscription"
|
||||
msgstr "구독 취소"
|
||||
|
||||
#. js-lingui-id: GGWsTU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Canceled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: y4uH7j
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancelling"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WbPx+C
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Cancels on"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XDbjjW
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Cannot delete the only view"
|
||||
@@ -3122,6 +3077,11 @@ msgstr ""
|
||||
msgid "Configure fallback login methods for users with SSO bypass permissions"
|
||||
msgstr "SSO 우회 권한이 있는 사용자를 위한 대체 로그인 방법 구성"
|
||||
|
||||
#. js-lingui-id: c7wznw
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
msgid "Configure filters"
|
||||
msgstr "필터 구성"
|
||||
|
||||
#. js-lingui-id: ghdb7+
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
|
||||
msgid "Configure how we should display your events in your calendar"
|
||||
@@ -3319,7 +3279,6 @@ msgstr ""
|
||||
#: src/modules/spreadsheet-import/steps/components/SelectHeaderStep/SelectHeaderStep.tsx
|
||||
#: src/modules/spreadsheet-import/steps/components/MatchColumnsStep/MatchColumnsStep.tsx
|
||||
#: src/modules/spreadsheet-import/components/StepNavigationButton.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/auth/sign-in-up/components/internal/SignInUpWithCredentials.tsx
|
||||
msgid "Continue"
|
||||
msgstr "계속"
|
||||
@@ -3479,21 +3438,6 @@ msgstr "1천 크레딧 추가 비용"
|
||||
msgid "Could not delete approved access domain"
|
||||
msgstr "승인된 액세스 도메인을 삭제할 수 없습니다"
|
||||
|
||||
#. js-lingui-id: KqYYBp
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not open billing portal. Please check your enterprise key is present, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ZuI4Sl
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Could not open Stripe. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wVw4Am
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Could not refresh validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: s8lFtq
|
||||
#: src/hooks/useCopyToClipboard.tsx
|
||||
msgid "Couldn't copy to clipboard"
|
||||
@@ -3871,7 +3815,6 @@ msgstr "사용자 정의 도메인이 업데이트되었습니다"
|
||||
#. js-lingui-id: 8skTDV
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Custom objects"
|
||||
msgstr "사용자 지정 개체"
|
||||
|
||||
@@ -4974,8 +4917,6 @@ msgid "Edit own profile information"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: h2KoTu
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Edit payment method, see your invoices and more"
|
||||
msgstr "결제 방법 편집, 송장 확인 등"
|
||||
@@ -5275,11 +5216,6 @@ msgstr "비밀번호와 함께 코드를 요구하여 보안을 강화합니다.
|
||||
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
|
||||
msgstr "{withCreditCardTrialPeriodDuration}일 무료 체험을 즐기세요"
|
||||
|
||||
#. js-lingui-id: 6iUnle
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Enjoy a 30-day free trial"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: T/N+2Z
|
||||
#: src/modules/workflow/workflow-trigger/components/WorkflowEditTriggerWebhookForm.tsx
|
||||
#: src/modules/object-record/record-field/ui/form-types/components/FormRawJsonFieldInput.tsx
|
||||
@@ -5486,9 +5422,6 @@ msgstr "API 키를 입력하세요"
|
||||
#. js-lingui-id: GpB8YV
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/security/SettingsSecurity.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminContent.tsx
|
||||
msgid "Enterprise"
|
||||
msgstr "엔터프라이즈"
|
||||
|
||||
@@ -5497,22 +5430,6 @@ msgstr "엔터프라이즈"
|
||||
msgid "Enterprise Feature"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: S5c4pl
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise License"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KGE5g0
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Enterprise license activated successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: SLuq/l
|
||||
#: src/modules/settings/security/components/SSO/SettingsSSOSAMLForm.tsx
|
||||
msgid "Entity ID"
|
||||
@@ -5553,11 +5470,6 @@ msgstr "소프트 삭제된 기록 지우기"
|
||||
msgid "Error"
|
||||
msgstr "오류"
|
||||
|
||||
#. js-lingui-id: VouTsQ
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error activating enterprise license"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GHKxvg
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error deleting api key."
|
||||
@@ -5583,6 +5495,11 @@ msgstr "SSO ID 공급자 삭제 오류"
|
||||
msgid "Error editing SSO Identity Provider"
|
||||
msgstr "SSO ID 공급자 편집 오류"
|
||||
|
||||
#. js-lingui-id: GsIfmO
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerMetricsGraph.tsx
|
||||
msgid "Error fetching worker metrics: {errorMessage}"
|
||||
msgstr "워커 메트릭을 가져오는 중 오류: {errorMessage}"
|
||||
|
||||
#. js-lingui-id: GdBN5t
|
||||
#: src/modules/error-handler/components/AppRootErrorFallback.tsx
|
||||
msgid "Error illustration"
|
||||
@@ -5613,26 +5530,11 @@ msgstr "메시지 로드 오류"
|
||||
msgid "Error Message"
|
||||
msgstr "오류 메시지"
|
||||
|
||||
#. js-lingui-id: Mox63G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error opening billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: e/eieW
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Error opening Stripe"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: bT/0cM
|
||||
#: src/modules/ui/field/display/components/PhonesDisplay.tsx
|
||||
msgid "Error parsing additional phones: {error}"
|
||||
msgstr "추가 전화번호 구문 분석 오류: {error}"
|
||||
|
||||
#. js-lingui-id: zRXcyv
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Error refreshing validity token. Please contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PfAip2
|
||||
#: src/pages/settings/developers/api-keys/SettingsDevelopersApiKeyDetail.tsx
|
||||
msgid "Error regenerating api key."
|
||||
@@ -6095,11 +5997,6 @@ msgstr ""
|
||||
msgid "Failed to {translatedOperationType} {translatedMetadataName}. Related {relatedEntityNames} validation failed. Please check your configuration and try again."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: R1XJV1
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Failed to activate enterprise license. Please check your key or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: vJiM7T
|
||||
#: src/pages/settings/ai/components/SettingsSkillsTable.tsx
|
||||
msgid "Failed to activate skill"
|
||||
@@ -6477,6 +6374,7 @@ msgstr ""
|
||||
#: src/modules/views/components/ViewBarFilterDropdownFieldSelectMenu.tsx
|
||||
#: src/modules/views/components/ViewBarFilterButton.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/constants/settings/ChartConfigurationSettingLabels.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/ChartFiltersSettings.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
#: src/modules/settings/data-model/object-details/components/SettingsObjectRelationsTable.tsx
|
||||
#: src/modules/object-record/record-table/record-table-header/components/RecordTableColumnHeadDropdownMenu.tsx
|
||||
@@ -6499,7 +6397,6 @@ msgid "Filter group rule options"
|
||||
msgstr "필터 그룹 규칙 옵션"
|
||||
|
||||
#. js-lingui-id: cSev+j
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
|
||||
msgid "Filters"
|
||||
msgstr "필터"
|
||||
@@ -6570,11 +6467,6 @@ msgstr "이름"
|
||||
msgid "First name can not be empty"
|
||||
msgstr "이름은 비워 둘 수 없습니다"
|
||||
|
||||
#. js-lingui-id: JREYkg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Fix the payment issue to keep your enterprise features active."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: ylQd2j
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/utils/getActionHeaderTypeOrThrow.ts
|
||||
#: src/modules/side-panel/pages/workflow/action/components/SidePanelWorkflowSelectAction.tsx
|
||||
@@ -6594,7 +6486,7 @@ msgid "Folder name"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: HSh8u/
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/settings/accounts/components/message-folders/SettingsAccountsMessageFoldersCard.tsx
|
||||
msgid "Folders"
|
||||
msgstr "폴더"
|
||||
@@ -6743,22 +6635,6 @@ msgstr "생성된 파일"
|
||||
msgid "German"
|
||||
msgstr "독일어"
|
||||
|
||||
#. js-lingui-id: sqtljx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Get Enterprise"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: o2kSwB
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Get Enterprise Key"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NXEW3h
|
||||
#: src/pages/onboarding/InviteTeam.tsx
|
||||
msgid "Get the most out of your workspace by inviting your team."
|
||||
@@ -6779,12 +6655,6 @@ msgstr "글로벌"
|
||||
msgid "Go Back"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Hb4Cgz
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Go to billing portal"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mUbv8L
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
msgid "Go to Companies"
|
||||
@@ -7370,11 +7240,6 @@ msgstr ""
|
||||
msgid "Inbox"
|
||||
msgstr "받은 편지함"
|
||||
|
||||
#. js-lingui-id: mtGDyy
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Incomplete"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: O5wNUa
|
||||
#: src/modules/metadata-error-handler/hooks/useMetadataErrorHandler.ts
|
||||
msgid "index"
|
||||
@@ -8017,8 +7882,9 @@ msgid "Launch manually"
|
||||
msgstr "수동 실행"
|
||||
|
||||
#. js-lingui-id: rdU729
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsSettings.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutFieldsLayout.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownLayoutContent.tsx
|
||||
#: src/modules/object-record/object-options-dropdown/components/ObjectOptionsDropdownCustomView.tsx
|
||||
msgid "Layout"
|
||||
@@ -8091,12 +7957,6 @@ msgstr ""
|
||||
msgid "Less than or equal"
|
||||
msgstr "이하"
|
||||
|
||||
#. js-lingui-id: 3qg5Ro
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Licensee"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1njn7W
|
||||
#: src/pages/settings/profile/appearance/components/SettingsExperience.tsx
|
||||
#: src/modules/ui/navigation/navigation-drawer/components/MultiWorkspaceDropdown/internal/MultiWorkspaceDropdownThemesComponents.tsx
|
||||
@@ -8400,8 +8260,6 @@ msgid "Manage billing and subscriptions"
|
||||
msgstr "청구 및 구독 관리"
|
||||
|
||||
#. js-lingui-id: nvgUPq
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "Manage billing information"
|
||||
msgstr "청구 정보를 관리하세요"
|
||||
@@ -8754,11 +8612,6 @@ msgstr "연도의 달"
|
||||
msgid "monthly"
|
||||
msgstr "월간"
|
||||
|
||||
#. js-lingui-id: Sew/cK
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Monthly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 6jefe3
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
@@ -8820,7 +8673,7 @@ msgid "Move right"
|
||||
msgstr "오른쪽으로 이동"
|
||||
|
||||
#. js-lingui-id: 6qDVmw
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Move to a folder"
|
||||
msgstr ""
|
||||
|
||||
@@ -9421,13 +9274,13 @@ msgid "No Files"
|
||||
msgstr "파일 없음"
|
||||
|
||||
#. js-lingui-id: pYblOw
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/favorites/favorite-folder-picker/components/FavoriteFolderPickerList.tsx
|
||||
msgid "No folder"
|
||||
msgstr "폴더 없음"
|
||||
|
||||
#. js-lingui-id: 6XMhqL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "No folders available"
|
||||
msgstr ""
|
||||
|
||||
@@ -9601,8 +9454,8 @@ msgstr "결과 없음"
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
#: src/modules/side-panel/components/SidePanelList.tsx
|
||||
msgid "No results found"
|
||||
msgstr "결과를 찾을 수 없습니다"
|
||||
@@ -10335,26 +10188,11 @@ msgstr "비밀번호 재설정 링크가 이메일로 전송되었습니다"
|
||||
msgid "Paste the code below"
|
||||
msgstr "아래 코드를 붙여넣기"
|
||||
|
||||
#. js-lingui-id: raz2Pm
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key below to activate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: dNdgvF
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Paste your enterprise key here"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: I6gXOa
|
||||
#: src/modules/settings/logic-functions/components/tabs/SettingsLogicFunctionTriggersTab.tsx
|
||||
msgid "Path"
|
||||
msgstr "경로"
|
||||
|
||||
#. js-lingui-id: QmXBEc
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Payment issue"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: UbRKMZ
|
||||
#: src/pages/settings/emailing-domains/utils/getEmailingDomainStatusText.ts
|
||||
#: src/modules/settings/security/components/approvedAccessDomains/SettingsApprovedAccessDomainsListCard.tsx
|
||||
@@ -10491,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
|
||||
msgstr "{objectLabel} 기록을 선택하세요"
|
||||
|
||||
#. js-lingui-id: JqqNlC
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewPickerSubView.tsx
|
||||
msgid "Pick a view"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Wlba2h
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "Pick an object"
|
||||
msgstr ""
|
||||
|
||||
@@ -11115,16 +10953,6 @@ msgstr "릴리스"
|
||||
msgid "Reload"
|
||||
msgstr "새로 고침"
|
||||
|
||||
#. js-lingui-id: qbM5In
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reload validity token"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MZWnSC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Reloading..."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: qlAIQ1
|
||||
#: src/modules/object-metadata/components/RemoteNavigationDrawerSection.tsx
|
||||
msgid "Remote"
|
||||
@@ -11400,7 +11228,7 @@ msgstr "결과"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Results"
|
||||
msgstr "결과"
|
||||
|
||||
@@ -11539,11 +11367,6 @@ msgstr ""
|
||||
msgid "row level permission predicate group"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: xPaeO2
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Row-level security"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 7jTlsu
|
||||
#: src/modules/settings/data-model/fields/forms/select/components/SettingsDataModelFieldSelectFormOptionRow.tsx
|
||||
msgid "Ruby"
|
||||
@@ -11662,8 +11485,6 @@ msgstr ""
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "Search"
|
||||
msgstr "검색"
|
||||
|
||||
@@ -11700,7 +11521,7 @@ msgid "Search a field..."
|
||||
msgstr "필드 검색..."
|
||||
|
||||
#. js-lingui-id: ITQFzL
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelEditFolderPickerSubView.tsx
|
||||
msgid "Search a folder..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11868,7 +11689,7 @@ msgid "Search records"
|
||||
msgstr "레코드 검색"
|
||||
|
||||
#. js-lingui-id: rRklUH
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Search records..."
|
||||
msgstr ""
|
||||
|
||||
@@ -11903,13 +11724,11 @@ msgid "Searching the web for {query}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8sgZS9
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month"
|
||||
msgstr "좌석 / 월"
|
||||
|
||||
#. js-lingui-id: aQnWwf
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
#: src/modules/billing/components/SubscriptionPrice.tsx
|
||||
msgid "seat / month - billed yearly"
|
||||
msgstr "좌석 / 월 - 연간 청구"
|
||||
@@ -12737,7 +12556,6 @@ msgstr "SSO"
|
||||
|
||||
#. js-lingui-id: vlvAkg
|
||||
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "SSO (SAML / OIDC)"
|
||||
msgstr "SSO (SAML / OIDC)"
|
||||
|
||||
@@ -12782,16 +12600,6 @@ msgstr ""
|
||||
msgid "Start"
|
||||
msgstr "시작"
|
||||
|
||||
#. js-lingui-id: ASqWQi
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription to re-enable enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: OC6rnK
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Start a new enterprise subscription."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: D3iCkb
|
||||
#: src/pages/settings/security/event-logs/components/EventLogFilters.tsx
|
||||
msgid "Start Date"
|
||||
@@ -12817,11 +12625,6 @@ msgid "State"
|
||||
msgstr "상태"
|
||||
|
||||
#. js-lingui-id: uAQUqI
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/admin-panel/SettingsAdminIndicatorHealthStatus.tsx
|
||||
#: src/modules/settings/components/SettingsDnsRecordsTable.tsx
|
||||
#: src/modules/settings/admin-panel/components/SettingsAdminWorkspaceContent.tsx
|
||||
@@ -13117,11 +12920,11 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: 0apULK
|
||||
#: src/pages/settings/data-model/SettingsObjectTable.tsx
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelSystemObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelObjectPickerSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewSystemSubView.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemViewObjectPickerSubView.tsx
|
||||
msgid "System objects"
|
||||
msgstr ""
|
||||
@@ -13424,11 +13227,6 @@ msgstr "일치하지 않거나 무시된 필수 열이 있습니다. 계속 진
|
||||
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
|
||||
msgstr "오류가 포함된 행이 여전히 있습니다. 오류가 있는 행은 제출할 때 무시됩니다."
|
||||
|
||||
#. js-lingui-id: CA9PTn
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "There is a payment issue with your subscription. Please update your payment method."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: WQk7Cf
|
||||
#: src/modules/activities/timeline-activities/components/TimelineCard.tsx
|
||||
msgid "There is no activity associated with this record."
|
||||
@@ -13541,9 +13339,9 @@ msgstr ""
|
||||
msgid "This database value overrides environment settings. "
|
||||
msgstr "이 데이터베이스 값은 환경 설정을 덮어씁니다."
|
||||
|
||||
#. js-lingui-id: 8IRnd6
|
||||
#. js-lingui-id: qHAJQ2
|
||||
#: src/modules/settings/roles/role-permissions/object-level-permissions/record-level-permissions/components/SettingsRolePermissionsObjectLevelRecordLevelSection.tsx
|
||||
msgid "This feature is part of the Enterprise Plan"
|
||||
msgid "This feature is part of the Organization Plan"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: own57K
|
||||
@@ -13852,8 +13650,6 @@ msgid "Transfer ownership"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lhkaAC
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/internal/PlansTags.tsx
|
||||
msgid "Trial"
|
||||
msgstr "시험"
|
||||
@@ -14044,7 +13840,7 @@ msgid "Type anything..."
|
||||
msgstr "아무거나 입력하세요..."
|
||||
|
||||
#. js-lingui-id: UhqKcC
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
#: src/modules/side-panel/pages/navigation-menu-item/components/SidePanelNewSidebarItemRecordSubView.tsx
|
||||
msgid "Type to search records"
|
||||
msgstr ""
|
||||
|
||||
@@ -14202,11 +13998,6 @@ msgstr "무제한 연락처"
|
||||
msgid "Unlisted"
|
||||
msgstr "비공개"
|
||||
|
||||
#. js-lingui-id: Ep1uUU
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Unlock enterprise features like SSO, row-level security, and audit logs."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: eQMhFX
|
||||
#: src/modules/advanced-text-editor/extensions/slash-command/DefaultSlashCommands.ts
|
||||
msgid "unordered"
|
||||
@@ -14276,11 +14067,6 @@ msgstr "업데이트"
|
||||
msgid "Update"
|
||||
msgstr "업데이트"
|
||||
|
||||
#. js-lingui-id: Y69tSP
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Update payment method"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 0KAL3W
|
||||
#: src/modules/side-panel/hooks/useOpenUpdateMultipleRecordsPageInSidePanel.tsx
|
||||
#: src/modules/command-menu-item/record/constants/DefaultRecordCommandMenuItemsConfig.tsx
|
||||
@@ -14519,22 +14305,11 @@ msgstr "기본 애플리케이션 값을 사용 중입니다. 환경 변수를
|
||||
msgid "Using default value. Set a custom value to override."
|
||||
msgstr "기본값을 사용 중입니다. 덮어쓰려면 사용자 지정 값을 설정하세요."
|
||||
|
||||
#. js-lingui-id: zzp4XX
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Valid until"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Clr4qp
|
||||
#: src/modules/spreadsheet-import/steps/components/SpreadsheetImportStepperContainer.tsx
|
||||
msgid "Validate Data"
|
||||
msgstr "데이터 검증"
|
||||
|
||||
#. js-lingui-id: PWZBIT
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Validity token refreshed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: wMHvYH
|
||||
#: src/pages/settings/applications/tabs/SettingsApplicationDetailEnvironmentVariablesTable.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/http-request-action/components/KeyValuePairInput.tsx
|
||||
@@ -14661,8 +14436,6 @@ msgid "View and filter events, page views, object changes"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: KANz0G
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/modules/billing/components/SettingsBillingContent.tsx
|
||||
msgid "View billing details"
|
||||
msgstr "청구 세부 정보 보기"
|
||||
@@ -14712,11 +14485,6 @@ msgstr "보기 그룹"
|
||||
msgid "View installed app"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: B02hom
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "View invoices"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: lh5BED
|
||||
#: src/modules/settings/admin-panel/health-status/components/SettingsAdminWorkerQueueMetricsSection.tsx
|
||||
msgid "View Jobs"
|
||||
@@ -14735,7 +14503,6 @@ msgstr ""
|
||||
#. js-lingui-id: ecVcAx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
|
||||
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
|
||||
msgid "View Previous AI Chats"
|
||||
msgstr "이전 AI 채팅 보기"
|
||||
|
||||
@@ -15085,7 +14852,6 @@ msgstr "Workflows"
|
||||
#: src/pages/settings/members/SettingsWorkspaceMember.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/logic-functions/SettingsLogicFunctionDetail.tsx
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsNewEmailingDomain.tsx
|
||||
#: src/pages/settings/emailing-domains/SettingsEmailingDomainDetail.tsx
|
||||
#: src/pages/settings/domains/SettingsDomains.tsx
|
||||
@@ -15252,11 +15018,6 @@ msgstr "연"
|
||||
msgid "yearly"
|
||||
msgstr "연간"
|
||||
|
||||
#. js-lingui-id: Y1GwUe
|
||||
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
|
||||
msgid "Yearly subscription"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: +BGee5
|
||||
#: src/modules/side-panel/pages/page-layout/utils/getDateGranularityPluralLabel.ts
|
||||
msgid "years"
|
||||
@@ -15389,36 +15150,6 @@ msgstr "이메일 제목과 회의 제목이 팀과 공유됩니다."
|
||||
msgid "Your emails and events content will be shared with your team."
|
||||
msgstr "이메일과 이벤트 내용이 팀과 공유됩니다."
|
||||
|
||||
#. js-lingui-id: ahEwS4
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XMZLU/
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features are active but your enterprise key is missing or invalid. This may be expected, but if not, please set a valid signed enterprise key to manage your subscription, or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: AxcwNj
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will be disabled"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PT137K
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise features will remain active until {cancelAtDate}."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 69Siss
|
||||
#: src/modules/information-banner/components/enterprise/InformationBannerLegacyEnterpriseKey.tsx
|
||||
msgid "Your enterprise key format is deprecated. Please activate a new key to keep enterprise features."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: NTpA4U
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your enterprise subscription has been canceled."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 9ivpwk
|
||||
#: src/pages/settings/SettingsProfile.tsx
|
||||
msgid "Your name as it will be displayed"
|
||||
@@ -15429,26 +15160,6 @@ msgstr "표시될 이름"
|
||||
msgid "Your name as it will be displayed on the app"
|
||||
msgstr "앱에 디스플레이될 귀하의 이름"
|
||||
|
||||
#. js-lingui-id: 319YPG
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is active but your validity token is invalid or has expired. Try reloading it or contact support."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Fx0axg
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription is scheduled for cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: XgIa/8
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription setup was not completed."
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: Z9kbt6
|
||||
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
|
||||
msgid "Your subscription status is: {statusLabel}"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: QOd24n
|
||||
#: src/modules/billing/hooks/useBillingWording.ts
|
||||
msgid "Your trial period will end, and "
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user