Compare commits

..
Author SHA1 Message Date
Félix MalfaitandGitHub aac099f2e8 Merge branch 'main' into feat/seed-apps-for-dev-workspaces 2026-03-12 08:55:50 +01:00
Félix MalfaitandGitHub a3c0c62506 Merge branch 'main' into feat/seed-apps-for-dev-workspaces 2026-03-11 15:52:06 +01:00
Félix MalfaitandGitHub 390ae34ed8 Merge branch 'main' into feat/seed-apps-for-dev-workspaces 2026-03-11 14:52:19 +01:00
Félix Malfait fe59c333ac Merge remote-tracking branch 'origin/main' into feat/seed-apps-for-dev-workspaces
Made-with: Cursor

# Conflicts:
#	packages/twenty-sdk/src/clients/generated/metadata/types.ts
2026-03-11 14:11:16 +01:00
Félix Malfait 6c0da189cb Fix prettier formatting and regenerate GraphQL/SDK metadata
Made-with: Cursor
2026-03-11 14:03:35 +01:00
Félix Malfait 5aea16f070 Setup 2026-03-11 13:26:41 +01:00
Félix MalfaitandGitHub 2f542d6763 Merge branch 'main' into feat/seed-apps-for-dev-workspaces 2026-03-11 12:44:43 +01:00
Félix Malfait 4ac38449cb Use require.resolve instead of findMonorepoRoot for fixture paths
Follow the existing pattern from standard-front-component-upload.service.ts:
resolve package location via Node module resolution rather than traversing
the filesystem looking for nx.json.

Made-with: Cursor
2026-03-11 12:40:46 +01:00
Félix Malfait dab4cbcb7d Extract shared install logic into installFromExtractedDir
Both installFromLocalDirectory and doInstallApplication now delegate to
a single private method, eliminating the duplicated ensureApplicationExists
+ writeFilesToStorage + synchronizeFromManifest sequence.

Made-with: Cursor
2026-03-11 12:38:42 +01:00
Félix Malfait a73f586619 Revert hello-world view to use ViewKey enum instead of string literal
Made-with: Cursor
2026-03-11 12:37:32 +01:00
Félix Malfait d1126f507d Refactor app seeding to use committed fixture manifests
Instead of inlining manifest JSON in app-seeds.constant.ts, the seeder
now reads manifest.json directly from fixture app .twenty/output/
directories. Adds findMonorepoRoot() for robust path resolution and
graceful error handling so one failing app doesn't block others.

Made-with: Cursor
2026-03-11 12:24:23 +01:00
Félix Malfait 3a1f10e572 Change strat 2026-03-10 20:46:54 +01:00
Félix MalfaitandGitHub d16299a624 Merge branch 'main' into feat/seed-apps-for-dev-workspaces 2026-03-10 20:07:17 +01:00
Félix Malfait 61d058bb1f Seed dev workspaces with three fixture apps
Add installFromLocalDirectory() to ApplicationInstallService so apps can
be installed from a local directory without network access.  The seeder
creates an ApplicationRegistration, writes the manifest and package.json
to a temp dir, then calls the standard install pipeline
(ensureApplicationExists → writeFilesToStorage → synchronizeFromManifest).

Three apps are seeded into both dev workspaces:
- Hello World (NPM source) — full manifest with objects, fields, roles,
  skills, logic functions, views, and navigation menu items
- Postcard App (tarball source) — minimal manifest
- Minimal App (local source) — minimal manifest

Also adds a hello-world integration test to the SDK that validates the
generated manifest against an expected snapshot, which keeps the seed
manifest in sync with the app source.

Made-with: Cursor
2026-03-10 20:05:07 +01:00
994 changed files with 30242 additions and 27627 deletions
@@ -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
View File
@@ -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",
+10
View File
@@ -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,
});
@@ -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"
}
}
+4 -1
View File
@@ -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
@@ -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>
@@ -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>
@@ -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>
@@ -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>
@@ -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>
@@ -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>
@@ -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>
@@ -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>
+4 -1
View File
@@ -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',
+4 -1
View File
@@ -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',
},
+3 -3
View File
@@ -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: {
+4 -3
View File
@@ -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,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';
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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"
@@ -14716,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"
@@ -14739,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"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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 "واجهة برمجة التطبيقات والويب هوك"
@@ -1956,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 "اسأل الذكاء الاصطناعي"
@@ -2095,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
@@ -2328,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"
@@ -2590,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 "إلغاء الخطة"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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 "استمر"
@@ -3478,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"
@@ -3870,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 "كائنات مخصصة"
@@ -4973,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 "تعديل طريقة الدفع، ومشاهدة الفواتير والمزيد"
@@ -5274,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
@@ -5485,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 "مؤسسة"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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 "الفلاتر"
@@ -6574,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
@@ -6598,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 "مجلدات"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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 "إدارة معلومات الفوترة"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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 "لم يتم العثور على نتائج"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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 "\\\\"
@@ -11543,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"
@@ -11666,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 "\\\\"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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 "مقعد / شهر - مدفوع سنويًا"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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 "تجربة"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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 "عرض تفاصيل الفوترة"
@@ -14716,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"
@@ -14739,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 "عرض الذكاءات الاصطناعية السابقة"
@@ -15087,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
@@ -15254,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"
@@ -15391,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"
@@ -15431,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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ó"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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 ""
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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ó"
@@ -14716,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"
@@ -14739,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"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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ší"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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ů"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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ě"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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"
@@ -14716,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"
@@ -14739,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"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13547,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
@@ -13858,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"
@@ -14050,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 ""
@@ -14208,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"
@@ -14282,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
@@ -14525,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
@@ -14667,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"
@@ -14718,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"
@@ -14741,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"
@@ -15091,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
@@ -15258,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"
@@ -15395,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"
@@ -15435,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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"
@@ -14716,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"
@@ -14739,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"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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 "Ακύρωση σχεδίου"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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 "Συνέχεια"
@@ -3478,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"
@@ -3870,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 "Προσαρμοσμένα αντικείμενα"
@@ -4973,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 "Επεξεργασία τρόπου πληρωμής, προβολή των τιμολογίων σου και άλλα"
@@ -5274,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
@@ -5485,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 "Επιχειρήσεις"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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 "Φίλτρα"
@@ -6574,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
@@ -6598,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 "Φάκελοι"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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 "Διαχείριση πληροφοριών χρέωσης"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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 "Δεν βρέθηκαν αποτελέσματα"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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 "Αποτελέσματα"
@@ -11543,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"
@@ -11666,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 "Αναζήτηση"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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 "θέση / μήνας - χρέωση ετησίως"
@@ -12743,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)"
@@ -12788,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"
@@ -12823,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
@@ -13123,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 ""
@@ -13430,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."
@@ -13549,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
@@ -13860,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 "Δοκιμή"
@@ -14052,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 ""
@@ -14210,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"
@@ -14284,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
@@ -14527,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
@@ -14669,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 "Προβολή λεπτομερειών χρέωσης"
@@ -14720,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"
@@ -14743,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"
@@ -15093,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
@@ -15260,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"
@@ -15397,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"
@@ -15437,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 "
+34 -327
View File
@@ -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"
@@ -1674,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"
@@ -1951,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"
@@ -2090,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
@@ -2323,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"
@@ -2585,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"
@@ -2601,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"
@@ -3116,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"
@@ -3313,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"
@@ -3473,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"
@@ -3865,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"
@@ -4968,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"
@@ -5269,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
@@ -5480,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"
@@ -5491,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"
@@ -5547,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."
@@ -5612,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."
@@ -6094,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"
@@ -6476,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
@@ -6498,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"
@@ -6569,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
@@ -6593,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"
@@ -6742,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."
@@ -6778,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"
@@ -7369,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"
@@ -8016,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"
@@ -8090,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
@@ -8399,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"
@@ -8753,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
@@ -8819,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"
@@ -9420,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"
@@ -9600,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"
@@ -10334,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
@@ -10490,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"
@@ -11114,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"
@@ -11399,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"
@@ -11538,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"
@@ -11661,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"
@@ -11699,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..."
@@ -11867,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..."
@@ -11902,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"
@@ -12736,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)"
@@ -12781,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"
@@ -12816,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
@@ -13116,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"
@@ -13423,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."
@@ -13542,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
@@ -13853,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"
@@ -14045,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"
@@ -14203,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"
@@ -14277,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
@@ -14520,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
@@ -14662,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"
@@ -14713,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"
@@ -14736,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"
@@ -15086,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
@@ -15253,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"
@@ -15390,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"
@@ -15430,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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"
@@ -13428,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."
@@ -13547,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
@@ -13858,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"
@@ -14050,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 ""
@@ -14208,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"
@@ -14282,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
@@ -14525,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
@@ -14667,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"
@@ -14718,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"
@@ -14741,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"
@@ -15091,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
@@ -15258,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"
@@ -15395,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"
@@ -15435,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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"
@@ -14716,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"
@@ -14739,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"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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é"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13547,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
@@ -13858,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"
@@ -14050,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 ""
@@ -14208,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"
@@ -14282,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
@@ -14525,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
@@ -14667,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"
@@ -14718,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"
@@ -14741,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"
@@ -15091,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
@@ -15258,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"
@@ -15395,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"
@@ -15435,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
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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 "בטל תוכנית"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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 "המשך"
@@ -3478,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"
@@ -3870,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 "עצמים מותאמים אישית"
@@ -4973,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 "ערוך שיטת תשלום, צפה בחשבוניות שלך ועוד"
@@ -5274,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
@@ -5485,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 "אנטרפרייז"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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 "מסננים"
@@ -6574,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
@@ -6598,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 "תיקיות"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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 "נהל מידע לתשלום"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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 "לא נמצאו תוצאות"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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 "\\"
@@ -11543,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"
@@ -11666,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 "\\"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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 "מושב / חודש - מחויב שנתי"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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 "ניסיון"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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 "צפייה בפרטי החשבונית"
@@ -14716,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"
@@ -14739,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 קודמות"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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"
@@ -14716,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"
@@ -14739,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"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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"
@@ -3478,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"
@@ -3870,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"
@@ -4973,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"
@@ -5274,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
@@ -5485,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"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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"
@@ -6574,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
@@ -6598,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"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13547,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
@@ -13858,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"
@@ -14050,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 ""
@@ -14208,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"
@@ -14282,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
@@ -14525,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
@@ -14667,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"
@@ -14718,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"
@@ -14741,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"
@@ -15091,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
@@ -15258,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"
@@ -15395,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"
@@ -15435,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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"
@@ -1956,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に尋ねる"
@@ -2095,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
@@ -2328,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"
@@ -2590,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 "プランをキャンセル"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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 "続行"
@@ -3478,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"
@@ -3870,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 "カスタムオブジェクト"
@@ -4973,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 "支払い方法の編集、請求書の確認など"
@@ -5274,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
@@ -5485,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 "エンタープライズ"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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 "フィルター"
@@ -6574,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
@@ -6598,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 "フォルダー"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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 "請求情報を管理する"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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 "結果が見つかりません"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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 "結果"
@@ -11543,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"
@@ -11666,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 "検索"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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 "座席 / 月 - 年間請求"
@@ -12741,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 "SSOSAML / OIDC"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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 "トライアル"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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 "請求の詳細を表示"
@@ -14716,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"
@@ -14739,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チャットを見る"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -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 ""
@@ -1679,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 및 웹훅"
@@ -1956,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에게 질문하기"
@@ -2095,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
@@ -2328,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"
@@ -2590,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 "요금제 취소"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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 "계속"
@@ -3478,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"
@@ -3870,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 "사용자 지정 개체"
@@ -4973,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 "결제 방법 편집, 송장 확인 등"
@@ -5274,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
@@ -5485,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 "엔터프라이즈"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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 "필터"
@@ -6574,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
@@ -6598,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 "폴더"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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 "청구 정보를 관리하세요"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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 "결과를 찾을 수 없습니다"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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 "결과"
@@ -11543,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"
@@ -11666,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 "검색"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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 "좌석 / 월 - 연간 청구"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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 "시험"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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 "청구 세부 정보 보기"
@@ -14716,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"
@@ -14739,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 채팅 보기"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Acties die gebruikers op dit object kunnen uitvoeren"
#. 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 "Activeren"
#. 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 activeren"
#. 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}\" toe aan opties"
msgid "Add a {objectLabelSingular}"
msgstr "Voeg een {objectLabelSingular} toe"
#. 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 een knooppunt toe"
#. 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 klaar!"
#. 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 ""
@@ -1679,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"
@@ -1956,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 "Vraag AI"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Bijlagen"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "tussen de {startOrdinal} en {endOrdinal} van de maand"
msgid "Billing"
msgstr "Facturatie"
#. 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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Metered tier wissel annuleren?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Plan annuleren"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Planwisseling annuleren?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Annuleer uw 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configureer alternatieve inlogmethoden voor gebruikers met SSO-bypassrechten"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Filters configureren"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3318,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 "Doorgaan"
@@ -3478,21 +3438,6 @@ msgstr "Kosten per 1k extra credits"
msgid "Could not delete approved access domain"
msgstr "Kon goedgekeurd toegangsdomijn niet verwijderen"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Aangepast domein bijgewerkt"
#. 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 "Aangepaste objecten"
@@ -4973,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 "Bewerk betaalmethode, bekijk uw facturen en meer"
@@ -5274,11 +5216,6 @@ msgstr "Verhoogt de beveiliging door naast uw wachtwoord een code te vereisen"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Geniet van een {withCreditCardTrialPeriodDuration}-daagse gratis proefperiode"
#. 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
@@ -5485,9 +5422,6 @@ msgstr "Voer je 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"
@@ -5496,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"
@@ -5552,11 +5470,6 @@ msgstr "Verwijdering van zacht verwijderde records"
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."
@@ -5617,26 +5530,11 @@ msgstr "Fout bij het laden van het bericht"
msgid "Error Message"
msgstr "Foutmelding"
#. 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 bij het parseren van extra telefoonnummers: {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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Opties voor filtergroepsregel"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filters"
@@ -6574,11 +6467,6 @@ msgstr "Voornaam"
msgid "First name can not be empty"
msgstr "Voornaam mag niet leeg zijn"
#. 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
@@ -6598,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 "Mappen"
@@ -6747,22 +6635,6 @@ msgstr "Gegenereerde bestanden"
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."
@@ -6783,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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Inbox"
#. 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"
@@ -8021,8 +7882,9 @@ msgid "Launch manually"
msgstr "Handmatig starten"
#. 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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Kleiner dan of gelijk 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
@@ -8404,8 +8260,6 @@ msgid "Manage billing and subscriptions"
msgstr "Beheer facturering en abonnementen"
#. 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 "Beheer factuurinformatie"
@@ -8758,11 +8612,6 @@ msgstr "Maand van het jaar"
msgid "monthly"
msgstr "maandelijks"
#. 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
@@ -8824,7 +8673,7 @@ msgid "Move right"
msgstr "Verplaats naar rechts"
#. 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 ""
@@ -9425,13 +9274,13 @@ msgid "No Files"
msgstr "Geen bestanden"
#. 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 map"
#. 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 ""
@@ -9605,8 +9454,8 @@ msgstr "Geen resultaten"
#: 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 resultaten gevonden"
@@ -10339,26 +10188,11 @@ msgstr "Link voor het resetten van het wachtwoord is naar de email verstuurd"
msgid "Paste the code below"
msgstr "Plak de onderstaande code"
#. 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
@@ -10495,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Kies een {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 ""
#. 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 ""
@@ -11119,16 +10953,6 @@ msgstr "Uitgaven"
msgid "Reload"
msgstr "Herladen"
#. 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"
@@ -11404,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 "Resultaten"
@@ -11543,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"
@@ -11666,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 "Zoeken"
@@ -11704,7 +11521,7 @@ msgid "Search a field..."
msgstr "Zoek een 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 ""
@@ -11872,7 +11689,7 @@ msgid "Search records"
msgstr "Records zoeken"
#. 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 ""
@@ -11907,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 "stoel / maand"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "stoel / maand - jaarlijks gefactureerd"
@@ -12741,7 +12556,6 @@ msgstr "Eenmalige aanmelding"
#. 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)"
@@ -12786,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"
@@ -12821,11 +12625,6 @@ msgid "State"
msgstr "Status"
#. 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
@@ -13121,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 ""
@@ -13428,11 +13227,6 @@ msgstr "Er zijn vereiste kolommen die niet gekoppeld of genegeerd zijn. Wilt u d
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Er zijn nog rijen die fouten bevatten. Rijen met fouten worden genegeerd bij het indienen."
#. 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."
@@ -13547,9 +13341,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Deze databasewaarde overschrijft omgevingsinstellingen."
#. 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
@@ -13858,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 "Proef"
@@ -14050,7 +13842,7 @@ msgid "Type anything..."
msgstr "Typ iets..."
#. 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 ""
@@ -14208,11 +14000,6 @@ msgstr "Onbeperkte contacten"
msgid "Unlisted"
msgstr "Niet-gelijst"
#. 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"
@@ -14282,11 +14069,6 @@ msgstr "bijwerken"
msgid "Update"
msgstr "Bijwerken"
#. 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
@@ -14525,22 +14307,11 @@ msgstr "Gebruikt standaard waarde van de toepassing. Configureer via omgevingsva
msgid "Using default value. Set a custom value to override."
msgstr "Gebruikt standaardwaarde. Stel een aangepaste waarde in om te overschrijven."
#. 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 "Gegevens valideren"
#. 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
@@ -14667,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 "Factuurdetails bekijken"
@@ -14718,11 +14487,6 @@ msgstr "bekijk 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"
@@ -14741,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 "Bekijk Vorige AI-chats"
@@ -15091,7 +14854,6 @@ msgstr "Workstrooms"
#: 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
@@ -15258,11 +15020,6 @@ msgstr "Jaar"
msgid "yearly"
msgstr "jaarlijks"
#. 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"
@@ -15395,36 +15152,6 @@ msgstr "Uw e-mailsubjecten en vergadertitels worden gedeeld met uw team."
msgid "Your emails and events content will be shared with your team."
msgstr "Uw e-mail en de inhoud van evenementen worden gedeeld met uw 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"
@@ -15435,26 +15162,6 @@ msgstr "Uw naam zoals deze zal worden weergegeven"
msgid "Your name as it will be displayed on the app"
msgstr "Uw naam zoals deze in de app zal worden weergegeven"
#. 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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Handlinger brukere kan utføre på dette objektet"
#. 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 "Aktiver"
#. 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 "Aktiver arbeidsflyt"
#. 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 "Legg til \"{trimmedName}\" i valg"
msgid "Add a {objectLabelSingular}"
msgstr "Legg til {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 "Legg til 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 klart!"
#. 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 ""
@@ -1679,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 og webhooks"
@@ -1956,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ør AI"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Vedlegg"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "mellom 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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Avbryt målt nivåbytte?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Avbryt abonnement"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Avbryt planbytte?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Si opp abonnementet ditt"
#. 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfigurer fallback-påloggingsmetoder for brukere med SSO-omgåelsesrettigheter"
#. 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"
@@ -3318,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 "Fortsett"
@@ -3478,21 +3438,6 @@ msgstr "Kostnad per 1k ekstra kreditter"
msgid "Could not delete approved access domain"
msgstr "Kunne ikke slette godkjent tilgangsdomene"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Egendefinert domene oppdatert"
#. 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"
@@ -4973,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 mer"
@@ -5274,11 +5216,6 @@ msgstr "Øker sikkerheten ved å kreve en kode sammen med passordet ditt"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Nyt en {withCreditCardTrialPeriodDuration}-dagers 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
@@ -5485,9 +5422,6 @@ msgstr "Skriv inn API-nøkkelen din"
#. 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"
@@ -5496,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"
@@ -5552,11 +5470,6 @@ msgstr "Sletting av mykslettede poster"
msgid "Error"
msgstr "Feil"
#. 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."
@@ -5617,26 +5530,11 @@ msgstr "Feil ved lasting av melding"
msgid "Error Message"
msgstr "Feilmelding"
#. 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 "Feil ved tolking av 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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Alternativer 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"
@@ -6574,11 +6467,6 @@ msgstr "Fornavn"
msgid "First name can not be empty"
msgstr "Fornavn kan 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
@@ -6598,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"
@@ -6747,22 +6635,6 @@ msgstr "Genererte 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."
@@ -6783,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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Innboks"
#. 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"
@@ -8021,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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre enn eller lik"
#. 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
@@ -8404,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 faktureringsinformasjon"
@@ -8758,11 +8612,6 @@ msgstr "Måned i året"
msgid "monthly"
msgstr "månedlig"
#. 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
@@ -8824,7 +8673,7 @@ msgid "Move right"
msgstr "Flytt til høyre"
#. 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 ""
@@ -9425,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 ""
@@ -9605,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 funnet"
@@ -10339,26 +10188,11 @@ msgstr "Lenke for tilbakestilling av passord har blitt sendt til e-posten"
msgid "Paste the code below"
msgstr "Lim inn 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
@@ -10495,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Velg 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 ""
@@ -11119,16 +10953,6 @@ msgstr "Utgivelser"
msgid "Reload"
msgstr "Last inn på nytt"
#. 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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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øk"
@@ -11704,7 +11521,7 @@ msgid "Search a field..."
msgstr "Søk 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 ""
@@ -11872,7 +11689,7 @@ msgid "Search records"
msgstr "Søk 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 ""
@@ -11907,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 "sete / 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 "sete / måned - fakturert årlig"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,11 +13227,6 @@ msgstr "Det er påkrevde kolonner som ikke er matchet eller ignorert. Vil du for
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Det er fortsatt noen rader som inneholder feil. Rader med feil vil bli ignorert ved innsending."
#. 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 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Denne databaseverdien overstyrer miljøinnstillinger."
#. 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 +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øve"
@@ -14048,7 +13840,7 @@ msgid "Type anything..."
msgstr "Skriv hva som helst..."
#. 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 +13998,6 @@ msgstr "Ubegrenset kontakter"
msgid "Unlisted"
msgstr "Ulistefø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"
@@ -14280,11 +14067,6 @@ msgstr "oppdater"
msgid "Update"
msgstr "Oppdater"
#. 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 +14305,11 @@ msgstr "Bruker standard applikasjonsverdi. Konfigurer via miljøvariabler."
msgid "Using default value. Set a custom value to override."
msgstr "Bruker standardverdi. Angi en tilpasset verdi for å overstyre."
#. 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
@@ -14665,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 "Vis faktureringsdetaljer"
@@ -14716,11 +14485,6 @@ msgstr "visningsgruppe"
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 +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 "Vis tidligere AI-chatter"
@@ -15089,7 +14852,6 @@ msgstr "Arbeidsflyter"
#: 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 +15018,6 @@ msgstr "År"
msgid "yearly"
msgstr "årlig"
#. 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 +15150,6 @@ msgstr "E-postemnene dine og møtetitlene dine vil bli delt med teamet ditt."
msgid "Your emails and events content will be shared with your team."
msgstr "E-postene dine og innholdet i hendelsene dine vil bli delt med teamet ditt."
#. 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 +15160,6 @@ msgstr "Ditt navn slik det vil bli vist"
msgid "Your name as it will be displayed on the app"
msgstr "Ditt navn slik det vil bli 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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Działania, które użytkownicy mogą wykonywać na tym obiekcie"
#. 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 "Aktywuj"
#. 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 "Aktywuj przepływ pracy"
#. 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 "Dodaj \"{trimmedName}\" do opcji"
msgid "Add a {objectLabelSingular}"
msgstr "Dodaj {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 "Dodaj węzeł"
#. 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 "Wszystko gotowe!"
#. 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 ""
@@ -1679,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"
@@ -1956,7 +1940,6 @@ msgstr "Rosnąco"
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/record-agnostic/constants/RecordAgnosticCommandMenuItemsConfig.tsx
#: src/modules/command-menu-item/constants/EngineComponentKeyComponentMap.tsx
msgid "Ask AI"
msgstr "Zapytaj AI"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Załączniki"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "pomiędzy {startOrdinal} a {endOrdinal} miesiąca"
msgid "Billing"
msgstr "Rozliczenia"
#. 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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Anulować przełączanie poziomu rozliczeń?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Anuluj subskrypcję"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Anulować przełączanie planu?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Anuluj swoją subskrypcję"
#. 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfiguruj metody logowania awaryjnego dla użytkowników z uprawnieniami do obejścia SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Skonfiguruj filtry"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3318,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 "Kontynuuj"
@@ -3478,21 +3438,6 @@ msgstr "Koszt za 1k dodatkowych kredytów"
msgid "Could not delete approved access domain"
msgstr "Nie można usunąć zatwierdzonej domeny dostępu"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Zaktualizowano domenę niestandardową"
#. 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 "Obiekty niestandardowe"
@@ -4973,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 "Edytuj sposób płatności, zobacz swoje faktury i więcej"
@@ -5274,11 +5216,6 @@ msgstr "Zwiększa bezpieczeństwo, wymagając podania kodu wraz z hasłem"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Ciesz się {withCreditCardTrialPeriodDuration}-dniowym bezpłatnym okresem próbnym"
#. 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
@@ -5485,9 +5422,6 @@ msgstr "Wprowadź swój klucz 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 "Przedsiębiorstwo"
@@ -5496,22 +5430,6 @@ msgstr "Przedsiębiorstwo"
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"
@@ -5552,11 +5470,6 @@ msgstr "Usunięcie zmiękczonych zapisów"
msgid "Error"
msgstr "Błąd"
#. 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."
@@ -5617,26 +5530,11 @@ msgstr "Błąd ładowania wiadomości"
msgid "Error Message"
msgstr "Komunikat o błędzie"
#. 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 "Błąd podczas przetwarzania dodatkowych telefonów: {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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Opcje reguł grupy filtra"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtry"
@@ -6574,11 +6467,6 @@ msgstr "Imię"
msgid "First name can not be empty"
msgstr "Imię nie może być puste"
#. 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
@@ -6598,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 "Foldery"
@@ -6747,22 +6635,6 @@ msgstr "Wygenerowane pliki"
msgid "German"
msgstr "Niemiecki"
#. 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."
@@ -6783,12 +6655,6 @@ msgstr "Globalne"
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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Skrzynka odbiorcza"
#. 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"
@@ -8021,8 +7882,9 @@ msgid "Launch manually"
msgstr "Uruchom ręcznie"
#. 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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mniejsze lub równe"
#. 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
@@ -8404,8 +8260,6 @@ msgid "Manage billing and subscriptions"
msgstr "Zarządzaj billingiem i subskrypcjami"
#. 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 "Zarządzaj informacjami o rozliczeniach"
@@ -8758,11 +8612,6 @@ msgstr "Miesiąc roku"
msgid "monthly"
msgstr "miesięcznie"
#. 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
@@ -8824,7 +8673,7 @@ msgid "Move right"
msgstr "Przenieś w prawo"
#. 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 ""
@@ -9425,13 +9274,13 @@ msgid "No Files"
msgstr "Brak plików"
#. 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 "Brak folderu"
#. 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 ""
@@ -9605,8 +9454,8 @@ msgstr "Brak wyników"
#: 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 "Nie znaleziono wyników"
@@ -10339,26 +10188,11 @@ msgstr "Link do resetowania hasła został wysłany na adres e-mail"
msgid "Paste the code below"
msgstr "Wklej kod poniżej"
#. 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 "Ścieżka"
#. 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
@@ -10495,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Wybierz rekord {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 ""
@@ -11119,16 +10953,6 @@ msgstr "Wersje"
msgid "Reload"
msgstr "Przeładuj"
#. 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"
@@ -11404,7 +11228,7 @@ msgstr "Wynik"
#. 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 "Wyniki"
@@ -11543,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"
@@ -11666,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 "Szukaj"
@@ -11704,7 +11521,7 @@ msgid "Search a field..."
msgstr "Wyszukaj pole..."
#. 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 ""
@@ -11872,7 +11689,7 @@ msgid "Search records"
msgstr "Przeszukaj rekordy"
#. 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 ""
@@ -11907,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 "miejsca / miesiąc"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "miejsca / miesiąc - rozliczane rocznie"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,11 +12625,6 @@ msgid "State"
msgstr "Stan"
#. 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
@@ -13121,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 ""
@@ -13428,11 +13227,6 @@ msgstr "Istnieją wymagane kolumny, które nie zostały dopasowane lub zignorowa
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Istnieją wiersze zawierające błędy. Wiersze z błędami zostaną zignorowane podczas przesyłania."
#. 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 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Ta wartość z bazy danych zastępuje ustawienia środowiska."
#. 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 +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 "Test"
@@ -14048,7 +13840,7 @@ msgid "Type anything..."
msgstr "Wpisz cokolwiek..."
#. 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 +13998,6 @@ msgstr "Nieograniczona liczba kontaktów"
msgid "Unlisted"
msgstr "Niepubliczne"
#. 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 +14067,6 @@ msgstr "zaktualizuj"
msgid "Update"
msgstr "Zaktualizuj"
#. 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 +14305,11 @@ msgstr "Używanie domyślnej wartości aplikacji. Skonfiguruj za pomocą zmienny
msgid "Using default value. Set a custom value to override."
msgstr "Używanie wartości domyślnej. Ustaw wartość własną, aby nadpisać."
#. 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 "Zweryfikuj dane"
#. 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 +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 "Zobacz szczegóły płatności"
@@ -14716,11 +14485,6 @@ msgstr "grupa widoku"
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 +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 "Pokaż poprzednie czaty AI"
@@ -15089,7 +14852,6 @@ msgstr "Przepływy pracy"
#: 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 +15018,6 @@ msgstr "Rok"
msgid "yearly"
msgstr "rocznie"
#. 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 +15150,6 @@ msgstr "Tematy twoich e-maili i tytuły spotkań będą udostępniane twojemu ze
msgid "Your emails and events content will be shared with your team."
msgstr "Treść twoich e-maili i wydarzeń będzie udostępniana twojemu zespołowi."
#. 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 +15160,6 @@ msgstr "Twoje imię, które będzie wyświetlane"
msgid "Your name as it will be displayed on the app"
msgstr "Twoje imię, które będzie wyświetlane w aplikacji"
#. 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 "
+33 -326
View File
@@ -747,37 +747,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"
@@ -815,13 +801,6 @@ msgstr ""
msgid "Add a {objectLabelSingular}"
msgstr ""
#. 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: "
@@ -834,10 +813,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"
@@ -1439,7 +1424,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 ""
@@ -1674,7 +1659,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 ""
@@ -1951,7 +1935,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 ""
@@ -2090,11 +2073,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
@@ -2323,11 +2301,6 @@ msgstr ""
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"
@@ -2585,7 +2558,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 ""
@@ -2601,26 +2573,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"
@@ -3116,6 +3072,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr ""
#. 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"
@@ -3313,7 +3274,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 ""
@@ -3473,21 +3433,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"
@@ -3865,7 +3810,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 ""
@@ -4968,8 +4912,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 ""
@@ -5269,11 +5211,6 @@ msgstr ""
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr ""
#. 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
@@ -5480,9 +5417,6 @@ msgstr ""
#. 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 ""
@@ -5491,22 +5425,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"
@@ -5547,11 +5465,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."
@@ -5612,26 +5525,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 ""
#. 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."
@@ -6094,11 +5992,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"
@@ -6476,6 +6369,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
@@ -6498,7 +6392,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 ""
@@ -6569,11 +6462,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
@@ -6593,7 +6481,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 ""
@@ -6742,22 +6630,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."
@@ -6778,12 +6650,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"
@@ -7369,11 +7235,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"
@@ -8016,8 +7877,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"
@@ -8090,12 +7952,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
@@ -8399,8 +8255,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 ""
@@ -8753,11 +8607,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
@@ -8819,7 +8668,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 ""
@@ -9420,13 +9269,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 ""
@@ -9600,8 +9449,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 ""
@@ -10334,26 +10183,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
@@ -10490,13 +10324,13 @@ msgid "Pick a {objectLabel} record"
msgstr ""
#. 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 ""
@@ -11114,16 +10948,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"
@@ -11399,7 +11223,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 ""
@@ -11538,11 +11362,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"
@@ -11661,8 +11480,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 ""
@@ -11699,7 +11516,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 ""
@@ -11867,7 +11684,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 ""
@@ -11902,13 +11719,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 ""
@@ -12736,7 +12551,6 @@ msgstr ""
#. js-lingui-id: vlvAkg
#: src/pages/onboarding/internal/ChooseYourPlanContent.tsx
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
msgid "SSO (SAML / OIDC)"
msgstr ""
@@ -12781,16 +12595,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"
@@ -12816,11 +12620,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
@@ -13116,11 +12915,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 ""
@@ -13423,11 +13222,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."
@@ -13540,9 +13334,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
@@ -13851,8 +13645,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 ""
@@ -14043,7 +13835,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 ""
@@ -14201,11 +13993,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"
@@ -14275,11 +14062,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
@@ -14518,22 +14300,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
@@ -14660,8 +14431,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 ""
@@ -14711,11 +14480,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"
@@ -14734,7 +14498,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 ""
@@ -15082,7 +14845,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
@@ -15249,11 +15011,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"
@@ -15386,36 +15143,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"
@@ -15426,26 +15153,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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Ações que os usuários podem realizar neste 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 "Ativar"
#. 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 "Ativar 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 "Adicionar \"{trimmedName}\" às opções"
msgid "Add a {objectLabelSingular}"
msgstr "Adicionar um {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 "Adicionar nó"
#. 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 "Tudo 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 ""
@@ -1679,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 Webhooks"
@@ -1956,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 "Perguntar ao AI"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Anexos"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "entre o {startOrdinal} e {endOrdinal} do mês"
msgid "Billing"
msgstr "Faturamento"
#. 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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Cancelar alternância de faixa medida?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Cancelar Plano"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Cancelar alternância de plano?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Cancelar sua assinatura"
#. 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurar métodos de login alternativos para usuários com permissões de contorno 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"
@@ -3318,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"
@@ -3478,21 +3438,6 @@ msgstr "Custo por 1k Créditos Extras"
msgid "Could not delete approved access domain"
msgstr "Não foi possível excluir o domínio de acesso aprovado"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Domínio personalizado atualizado"
#. 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"
@@ -4973,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 "Editar método de pagamento, ver suas faturas e mais"
@@ -5274,11 +5216,6 @@ msgstr "Aumenta a segurança exigindo um código junto com sua senha"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Aproveite um teste gratuito de {withCreditCardTrialPeriodDuration} dias"
#. 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
@@ -5485,9 +5422,6 @@ msgstr "Insira sua chave 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 "Enterprise"
@@ -5496,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"
@@ -5552,11 +5470,6 @@ msgstr "Apagamento de registros excluídos suavemente"
msgid "Error"
msgstr "Erro"
#. 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."
@@ -5617,26 +5530,11 @@ msgstr "Erro ao carregar mensagem"
msgid "Error Message"
msgstr "Mensagem de Erro"
#. 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 "Erro ao analisar telefones adicionais: {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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Opções de regras do 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"
@@ -6574,11 +6467,6 @@ msgstr "Nome"
msgid "First name can not be empty"
msgstr "O nome não pode estar vazio"
#. 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
@@ -6598,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 "Pastas"
@@ -6747,22 +6635,6 @@ msgstr "Arquivos gerados"
msgid "German"
msgstr "Alemão"
#. 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."
@@ -6783,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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Caixa 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"
@@ -8021,8 +7882,9 @@ msgid "Launch manually"
msgstr "Executar 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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor ou 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
@@ -8404,8 +8260,6 @@ msgid "Manage billing and subscriptions"
msgstr "Gerenciar cobrança e assinaturas"
#. 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 "Gerenciar informações de cobrança"
@@ -8758,11 +8612,6 @@ msgstr "Mês do ano"
msgid "monthly"
msgstr "mensal"
#. 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
@@ -8824,7 +8673,7 @@ msgid "Move right"
msgstr "Mover para a direita"
#. 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 ""
@@ -9425,13 +9274,13 @@ msgid "No Files"
msgstr "Nenhum arquivo"
#. 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 "Nenhuma pasta"
#. 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 ""
@@ -9605,8 +9454,8 @@ msgstr "Nenhum resultado"
#: 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 "Nenhum resultado encontrado"
@@ -10339,26 +10188,11 @@ msgstr "O link de redefinição de senha foi enviado para o e-mail"
msgid "Paste the code below"
msgstr "Cole o código abaixo"
#. 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 "Caminho"
#. 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
@@ -10495,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Escolha um registro {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 ""
@@ -11119,16 +10953,6 @@ msgstr "Lançamentos"
msgid "Reload"
msgstr "Recarregar"
#. 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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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 "Pesquisar"
@@ -11704,7 +11521,7 @@ msgid "Search a field..."
msgstr "Pesquisar um 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 ""
@@ -11872,7 +11689,7 @@ msgid "Search records"
msgstr "Pesquisar 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 ""
@@ -11907,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 "assento / mês"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "assento / mês - cobrado anualmente"
@@ -12741,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)"
@@ -12786,16 +12600,6 @@ msgstr ""
msgid "Start"
msgstr "Iniciar"
#. 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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,11 +13227,6 @@ msgstr "Existem colunas obrigatórias que não foram combinadas ou ignoradas. De
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Ainda há algumas linhas que contêm erros. Linhas com erros serão ignoradas ao 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."
@@ -13545,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Este valor do banco de dados substitui as configurações do 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
@@ -13856,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 "Teste"
@@ -14048,7 +13840,7 @@ msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. 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 +13998,6 @@ msgstr "Contatos ilimitados"
msgid "Unlisted"
msgstr "Não Listado"
#. 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 +14067,6 @@ msgstr "atualizar"
msgid "Update"
msgstr "Atualizar"
#. 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 +14305,11 @@ msgstr "Usando o valor padrão da aplicação. Configure através de variáveis
msgid "Using default value. Set a custom value to override."
msgstr "Usando valor padrão. Defina um valor personalizado para substituir."
#. 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 dados"
#. 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 +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 "Ver detalhes de faturamento"
@@ -14716,11 +14485,6 @@ msgstr "grupo de visualização"
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 +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 "Ver Conversas Anteriores da IA"
@@ -15089,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
@@ -15256,11 +15018,6 @@ msgstr "Ano"
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"
@@ -15393,36 +15150,6 @@ msgstr "Os assuntos dos seus e-mails e títulos das reuniões serão compartilha
msgid "Your emails and events content will be shared with your team."
msgstr "O conteúdo dos seus e-mails e eventos será compartilhado com sua equipe."
#. 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 +15160,6 @@ msgstr "Seu nome como será mostrado"
msgid "Your name as it will be displayed on the app"
msgstr "Seu nome como será exibido no aplicativo"
#. 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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Ações que os usuários podem realizar neste 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 "Ativar"
#. 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 "Ativar 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 "Adicionar \"{trimmedName}\" às opções"
msgid "Add a {objectLabelSingular}"
msgstr "Adicionar um {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 "Adicionar nó"
#. 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 "Tudo 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 ""
@@ -1679,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 Webhooks"
@@ -1956,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 "Pergunte à IA"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Anexos"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "entre o {startOrdinal} e {endOrdinal} do mês"
msgid "Billing"
msgstr "Faturação"
#. 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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Cancelar mudança de nível medido?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Cancelar plano"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Cancelar mudança de plano?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Cancelar a sua subscrição"
#. 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurar métodos de login alternativos para usuários com permissões de contornar 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"
@@ -3318,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"
@@ -3478,21 +3438,6 @@ msgstr "Custo por 1k Créditos Extras"
msgid "Could not delete approved access domain"
msgstr "Não foi possível excluir o domínio de acesso aprovado"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Domínio personalizado atualizado"
#. 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"
@@ -4973,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 "Editar método de pagamento, ver as suas faturas e muito mais"
@@ -5274,11 +5216,6 @@ msgstr "Melhora a segurança ao exigir um código junto com sua senha"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Desfrute de um período experimental gratuito de {withCreditCardTrialPeriodDuration} dias"
#. 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
@@ -5485,9 +5422,6 @@ msgstr "Introduza a sua chave 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 "Enterprise"
@@ -5496,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"
@@ -5552,11 +5470,6 @@ msgstr "Apagamento de registros excluídos temporariamente"
msgid "Error"
msgstr "Erro"
#. 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."
@@ -5617,26 +5530,11 @@ msgstr "Erro ao carregar mensagem"
msgid "Error Message"
msgstr "Mensagem de Erro"
#. 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 "Erro ao analisar números de telefone adicionais: {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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Opções de regra do 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"
@@ -6574,11 +6467,6 @@ msgstr "Nome"
msgid "First name can not be empty"
msgstr "O primeiro nome não pode estar vazio"
#. 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
@@ -6598,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 "Pastas"
@@ -6747,22 +6635,6 @@ msgstr "Arquivos gerados"
msgid "German"
msgstr "Alemão"
#. 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."
@@ -6783,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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Caixa 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"
@@ -8021,8 +7882,9 @@ msgid "Launch manually"
msgstr "Iniciar 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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Menor que ou 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
@@ -8404,8 +8260,6 @@ msgid "Manage billing and subscriptions"
msgstr "Gerenciar cobrança e assinaturas"
#. 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 "Gerenciar informações de faturamento"
@@ -8758,11 +8612,6 @@ msgstr "Mês do ano"
msgid "monthly"
msgstr "mensal"
#. 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
@@ -8824,7 +8673,7 @@ msgid "Move right"
msgstr "Mover para a direita"
#. 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 ""
@@ -9425,13 +9274,13 @@ msgid "No Files"
msgstr "Nenhum arquivo"
#. 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 "Nenhuma pasta"
#. 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 ""
@@ -9605,8 +9454,8 @@ msgstr "Sem 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 "Nenhum resultado encontrado"
@@ -10339,26 +10188,11 @@ msgstr "O link de reposição da palavra-passe foi enviado para o e-mail"
msgid "Paste the code below"
msgstr "Cole o código abaixo"
#. 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 "Caminho"
#. 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
@@ -10495,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Selecione um 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 ""
@@ -11119,16 +10953,6 @@ msgstr "Lançamentos"
msgid "Reload"
msgstr "Recarregar"
#. 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"
@@ -11404,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"
@@ -11543,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"
@@ -11666,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 "Pesquisar"
@@ -11704,7 +11521,7 @@ msgid "Search a field..."
msgstr "Pesquisar um 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 ""
@@ -11872,7 +11689,7 @@ msgid "Search records"
msgstr "Pesquisar registos"
#. 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 ""
@@ -11907,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 "assento / mês"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "assento / mês - cobrado anualmente"
@@ -12741,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)"
@@ -12786,16 +12600,6 @@ msgstr ""
msgid "Start"
msgstr "Iniciar"
#. 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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,11 +13227,6 @@ msgstr "Existem colunas obrigatórias que não estão correspondidas ou ignorada
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Ainda há algumas linhas que contêm erros. As linhas com erros serão ignoradas ao 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."
@@ -13545,9 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Este valor de banco de dados substitui as configurações de 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
@@ -13856,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 "Teste"
@@ -14048,7 +13840,7 @@ msgid "Type anything..."
msgstr "Digite qualquer coisa..."
#. 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 +13998,6 @@ msgstr "Contactos ilimitados"
msgid "Unlisted"
msgstr "Não listado"
#. 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 +14067,6 @@ msgstr "atualizar"
msgid "Update"
msgstr "Atualizar"
#. 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 +14305,11 @@ msgstr "Usando valor padrão do aplicativo. Configure através de variáveis de
msgid "Using default value. Set a custom value to override."
msgstr "Usando valor padrão. Defina um valor personalizado para substituir."
#. 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 dados"
#. 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 +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 "Ver detalhes de faturação"
@@ -14716,11 +14485,6 @@ msgstr "grupo de visualização"
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 +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 "Ver Conversas de IA Anteriores"
@@ -15089,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
@@ -15256,11 +15018,6 @@ msgstr "Ano"
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"
@@ -15393,36 +15150,6 @@ msgstr "Os assuntos dos seus emails e títulos de reuniões serão partilhados c
msgid "Your emails and events content will be shared with your team."
msgstr "O conteúdo dos seus emails e eventos será partilhado com sua equipa."
#. 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 +15160,6 @@ msgstr "O seu nome como será exibido"
msgid "Your name as it will be displayed on the app"
msgstr "O seu nome como será exibido no aplicativo"
#. 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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Acțiuni pe care utilizatorii le pot efectua asupra acestui obiect"
#. 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 "Activează"
#. 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 "Activează Fluxul de Lucru"
#. 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 "Adaugă \"{trimmedName}\" la opțiuni"
msgid "Add a {objectLabelSingular}"
msgstr "Adaugă 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 "Adaugă nod"
#. 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 "Gata!"
#. 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 ""
@@ -1679,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"
@@ -1956,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 "Întreabă AI"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Atașamente"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "între {startOrdinal} și {endOrdinal} ale lunii"
msgid "Billing"
msgstr "Facturare"
#. 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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Anulați schimbarea nivelului măsurat?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Anulează planul"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Anulați schimbarea planului?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Anulează abonamentul"
#. 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Configurează metode de conectare alternative pentru utilizatorii cu permisiuni de evitare SSO"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Configurează filtre"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3318,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 "Continuă"
@@ -3478,21 +3438,6 @@ msgstr "Cost per 1k credite suplimentare"
msgid "Could not delete approved access domain"
msgstr "Nu a putut fi șters domeniul de acces aprobat"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Domeniu personalizat actualizat"
#. 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 "Obiecte personalizate"
@@ -4973,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 "Editează metoda de plată, vezi facturile tale și mai mult"
@@ -5274,11 +5216,6 @@ msgstr "Îmbunătățește securitatea prin solicitarea unui cod împreună cu p
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Bucură-te de un proces gratuit de {withCreditCardTrialPeriodDuration} de zile"
#. 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
@@ -5485,9 +5422,6 @@ msgstr "Introduceți cheia dvs. 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 "Întreprindere"
@@ -5496,22 +5430,6 @@ msgstr "Întreprindere"
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"
@@ -5552,11 +5470,6 @@ msgstr "Ștergerea înregistrărilor soft-delete"
msgid "Error"
msgstr "Eroare"
#. 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."
@@ -5617,26 +5530,11 @@ msgstr "Eroare la încărcarea mesajului"
msgid "Error Message"
msgstr "Mesaj de eroare"
#. 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 "Eroare la parsarea numerelor de telefon suplimentare: {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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Opțiuni pentru regulile grupului de filtrare"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtre"
@@ -6574,11 +6467,6 @@ msgstr "Prenume"
msgid "First name can not be empty"
msgstr "Prenumele nu poate fi gol"
#. 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
@@ -6598,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 "Foldere"
@@ -6747,22 +6635,6 @@ msgstr "Fișiere generate"
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 ""
#. 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."
@@ -6783,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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Inbox"
#. 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"
@@ -8021,8 +7882,9 @@ msgid "Launch manually"
msgstr "Lansează manual"
#. 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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mai mic sau egal"
#. 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
@@ -8404,8 +8260,6 @@ msgid "Manage billing and subscriptions"
msgstr "Gestionează facturarea și abonamentele"
#. 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ți informațiile de facturare"
@@ -8758,11 +8612,6 @@ msgstr "Luna anului"
msgid "monthly"
msgstr "lunar"
#. 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
@@ -8824,7 +8673,7 @@ msgid "Move right"
msgstr "Mută la dreapta"
#. 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 ""
@@ -9425,13 +9274,13 @@ msgid "No Files"
msgstr "Niciun Fișier"
#. 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 "Niciun 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 ""
@@ -9605,8 +9454,8 @@ msgstr "Niciun rezultat"
#: 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 "Nu s-au găsit rezultate"
@@ -10339,26 +10188,11 @@ msgstr "Link-ul pentru resetarea parolei a fost trimis către email"
msgid "Paste the code below"
msgstr "Lipește codul de mai jos"
#. 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 "Cale"
#. 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
@@ -10495,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Alege un înregistrare {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 ""
@@ -11119,16 +10953,6 @@ msgstr "Versiuni"
msgid "Reload"
msgstr "Reîncarcă"
#. 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"
@@ -11404,7 +11228,7 @@ msgstr "Rezultat"
#. 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 "Rezultate"
@@ -11543,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"
@@ -11666,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 "Caută"
@@ -11704,7 +11521,7 @@ msgid "Search a field..."
msgstr "Caută un câmp..."
#. 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 ""
@@ -11872,7 +11689,7 @@ msgid "Search records"
msgstr "Caută înregistrări"
#. 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 ""
@@ -11907,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 ""
@@ -12741,7 +12556,6 @@ msgstr "Autentificare Unică"
#. 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)"
@@ -12786,16 +12600,6 @@ msgstr ""
msgid "Start"
msgstr "Începe"
#. 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"
@@ -12821,11 +12625,6 @@ msgid "State"
msgstr "Stare"
#. 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
@@ -13121,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 ""
@@ -13428,11 +13227,6 @@ msgstr "Există coloane obligatorii care nu sunt potrivite sau sunt ignorate. Do
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Există încă unele rânduri care conțin erori. Rândurile cu erori vor fi ignorate la trimitere."
#. 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 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Această valoare a bazei de date suprascrie setările de mediu."
#. 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 +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 "Proces"
@@ -14048,7 +13840,7 @@ msgid "Type anything..."
msgstr "Tastează orice..."
#. 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 +13998,6 @@ msgstr "Contacte nelimitate"
msgid "Unlisted"
msgstr "Nelistat"
#. 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 +14067,6 @@ msgstr "actualizează"
msgid "Update"
msgstr "Actualizează"
#. 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 +14305,11 @@ msgstr "Folosind valoarea implicită a aplicației. Configurați prin variabile
msgid "Using default value. Set a custom value to override."
msgstr "Folosind valoarea implicită. Setați o valoare personalizată pentru a suprascrie."
#. 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 "Validează datele"
#. 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 +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 "Vizualizează detalii despre facturare"
@@ -14716,11 +14485,6 @@ msgstr "grup de vizualizare"
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 +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 "Vizualizează Chat-urile AI Anterioare"
@@ -15089,7 +14852,6 @@ msgstr "Fluxuri de lucru"
#: 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 +15018,6 @@ msgstr "An"
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"
@@ -15393,36 +15150,6 @@ msgstr "Subiectele emailurilor și titlurile întâlnirilor vor fi partajate cu
msgid "Your emails and events content will be shared with your team."
msgstr "Conținutul emailurilor și evenimentelor va fi partajat cu echipa dvs."
#. 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 +15160,6 @@ msgstr "Numele dvs. așa cum va fi afișat"
msgid "Your name as it will be displayed on the app"
msgstr "Numele dvs. așa cum va fi afișat în aplicație"
#. 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 "
Binary file not shown.
+33 -326
View File
@@ -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 ""
@@ -1679,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 "API и Вебхукси"
@@ -1956,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"
@@ -2095,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
@@ -2328,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"
@@ -2590,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 "Откажи план"
@@ -2606,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"
@@ -3121,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"
@@ -3318,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 "Настави"
@@ -3478,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"
@@ -3870,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 "Прилагођени објекти"
@@ -4973,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 "Измени начин плаћања, погледај своје фактуре и још много тога"
@@ -5274,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
@@ -5485,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 "Предузеће"
@@ -5496,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"
@@ -5552,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."
@@ -5617,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."
@@ -6099,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"
@@ -6481,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
@@ -6503,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 "Филтери"
@@ -6574,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
@@ -6598,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 "Фасцикле"
@@ -6747,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."
@@ -6783,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"
@@ -7374,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"
@@ -8021,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"
@@ -8095,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
@@ -8404,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 "Управљајте информацијама о наплати"
@@ -8758,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
@@ -8824,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 ""
@@ -9425,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 ""
@@ -9605,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 "Нема резултата"
@@ -10339,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
@@ -10495,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 ""
@@ -11119,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"
@@ -11404,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 "Резултати"
@@ -11543,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"
@@ -11666,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 "Претрага"
@@ -11704,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 ""
@@ -11872,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 ""
@@ -11907,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 "седиште / месец - наплата годишње"
@@ -12741,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)"
@@ -12786,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"
@@ -12821,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
@@ -13121,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 ""
@@ -13428,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."
@@ -13545,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
@@ -13856,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 "Проба"
@@ -14048,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 ""
@@ -14206,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"
@@ -14280,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
@@ -14523,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
@@ -14665,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 "Прегледај детаље о плаћању"
@@ -14716,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"
@@ -14739,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 "Прегледај претходне разговоре са вештачком интелигенцијом"
@@ -15089,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
@@ -15256,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"
@@ -15393,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"
@@ -15433,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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Åtgärder användare kan utföra på det här objektet"
#. 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 "Aktivera"
#. 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 "Aktivera arbetsflöde"
#. 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 "Lägg till \"{trimmedName}\" i alternativ"
msgid "Add a {objectLabelSingular}"
msgstr "Lägg till {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 "Lägg till en nod"
#. 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 "Klart!"
#. 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 ""
@@ -1679,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"
@@ -1956,7 +1940,6 @@ msgstr "Stigande"
#: 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 "Fråga AI"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Bilagor"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "mellan den {startOrdinal} och {endOrdinal} av månaden"
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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Avbryt debiteringsnivåbyte?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Avsluta Plan"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Avbryt planbyte?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Avsluta din prenumeration"
#. 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "Konfigurera alternativa inloggningsmetoder för användare med SSO-förbikopplingsrättigheter"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Konfigurera filter"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3318,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ätt"
@@ -3478,21 +3438,6 @@ msgstr "Kostnad per 1k extra krediter"
msgid "Could not delete approved access domain"
msgstr "Kunde inte ta bort godkänd åtkomstdomän"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Anpassad domän uppdaterad"
#. 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 "Anpassade objekt"
@@ -4973,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 "Redigera betalningsmetod, se dina fakturor och mer"
@@ -5274,11 +5216,6 @@ msgstr "Förbättrar säkerheten genom att kräva en kod tillsammans med ditt l
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "Njut av en {withCreditCardTrialPeriodDuration}-dagars gratis provperiod"
#. 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
@@ -5485,9 +5422,6 @@ msgstr "Ange din API-nyckel"
#. 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 "Företag"
@@ -5496,22 +5430,6 @@ msgstr "Företag"
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"
@@ -5552,11 +5470,6 @@ msgstr "Radering av mjukt raderade poster"
msgid "Error"
msgstr "Fel"
#. 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."
@@ -5617,26 +5530,11 @@ msgstr "Fel vid inläsning av meddelande"
msgid "Error Message"
msgstr "Felmeddelande"
#. 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 "Fel vid tolkning av ytterligare telefonnummer: {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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Alternativ för filterregelgrupp"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filter"
@@ -6574,11 +6467,6 @@ msgstr "Förnamn"
msgid "First name can not be empty"
msgstr "Förnamn får inte vara 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
@@ -6598,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 "Mappar"
@@ -6747,22 +6635,6 @@ msgstr "Genererade filer"
msgid "German"
msgstr "Tyska"
#. 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."
@@ -6783,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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Inkorg"
#. 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"
@@ -8021,8 +7882,9 @@ msgid "Launch manually"
msgstr "Starta manuellt"
#. 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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Mindre än eller lika 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
@@ -8404,8 +8260,6 @@ msgid "Manage billing and subscriptions"
msgstr "Hantera fakturering och prenumerationer"
#. 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 "Hantera faktureringsinformation"
@@ -8760,11 +8614,6 @@ msgstr "Månad på året"
msgid "monthly"
msgstr "månadsvis"
#. 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
@@ -8826,7 +8675,7 @@ msgid "Move right"
msgstr "Flytta åt höger"
#. 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 ""
@@ -9427,13 +9276,13 @@ msgid "No Files"
msgstr "Inga 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 mapp"
#. 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 ""
@@ -9607,8 +9456,8 @@ msgstr "Inga 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 "Inga resultat hittades"
@@ -10341,26 +10190,11 @@ msgstr "En länk för återställning av lösenordet har skickats till e-postadr
msgid "Paste the code below"
msgstr "Klistra in koden nedan"
#. 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 "Sökväg"
#. 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
@@ -10497,13 +10331,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Välj 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 ""
@@ -11121,16 +10955,6 @@ msgstr "Utgåvor"
msgid "Reload"
msgstr "Ladda om"
#. 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"
@@ -11406,7 +11230,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 "Resultat"
@@ -11545,11 +11369,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"
@@ -11670,8 +11489,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ök"
@@ -11708,7 +11525,7 @@ msgid "Search a field..."
msgstr "Sök ett fält..."
#. 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 ""
@@ -11876,7 +11693,7 @@ msgid "Search records"
msgstr "Sök 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 ""
@@ -11911,13 +11728,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 "plats / månad"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "plats / månad - faktureras årligen"
@@ -12745,7 +12560,6 @@ msgstr "Enkel inloggning"
#. 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)"
@@ -12790,16 +12604,6 @@ msgstr ""
msgid "Start"
msgstr "Starta"
#. 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"
@@ -12825,11 +12629,6 @@ msgid "State"
msgstr "Delstat"
#. 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
@@ -13127,11 +12926,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 ""
@@ -13440,11 +13239,6 @@ msgstr "Det finns obligatoriska kolumner som inte är matchade eller ignorerade.
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Det finns fortfarande några rader som innehåller fel. Rader med fel kommer att ignoreras vid inlämning."
#. 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."
@@ -13559,9 +13353,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Detta databasvärde åsidosätter miljöinställningar."
#. 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
@@ -13870,8 +13664,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 "Provperiod"
@@ -14062,7 +13854,7 @@ msgid "Type anything..."
msgstr "Skriv något..."
#. 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 ""
@@ -14220,11 +14012,6 @@ msgstr "Obegränsat med kontakter"
msgid "Unlisted"
msgstr "Olistar"
#. 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"
@@ -14294,11 +14081,6 @@ msgstr "uppdatera"
msgid "Update"
msgstr "Uppdatera"
#. 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
@@ -14537,22 +14319,11 @@ msgstr "Använder standardapplikationsvärde. Konfigurera via miljövariabler."
msgid "Using default value. Set a custom value to override."
msgstr "Använder standardvärde. Ange ett anpassat värde för att åsidosätta."
#. 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 "Validera 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
@@ -14679,8 +14450,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 "Visa fakturadetaljer"
@@ -14730,11 +14499,6 @@ msgstr "view group"
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"
@@ -14753,7 +14517,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 "Visa tidigare AI-konversationer"
@@ -15103,7 +14866,6 @@ msgstr "Arbetsflöden"
#: 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
@@ -15270,11 +15032,6 @@ msgstr "År"
msgid "yearly"
msgstr "årligen"
#. 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"
@@ -15407,36 +15164,6 @@ msgstr "Dina e-postämnen och mötestitlar kommer att delas med ditt team."
msgid "Your emails and events content will be shared with your team."
msgstr "Ditt innehåll i e-post och händelser kommer att delas med ditt 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"
@@ -15447,26 +15174,6 @@ msgstr "Ditt namn som det kommer att visas"
msgid "Your name as it will be displayed on the app"
msgstr "Ditt namn som det kommer att visas 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 "
+33 -326
View File
@@ -752,37 +752,23 @@ msgid "Actions users can perform on this object"
msgstr "Kullanıcıların bu nesne üzerinde gerçekleştirebileceği eylemler"
#. 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 "Aktif Et"
#. 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 "İş Akışını Aktif Et"
#. 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}\" seçeneğe ekle"
msgid "Add a {objectLabelSingular}"
msgstr "Bir {objectLabelSingular} ekle"
#. 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 "Bir düğüm ekle"
#. 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 "Her şey hazır!"
#. 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 ""
@@ -1679,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 & Webhook'lar"
@@ -1956,7 +1940,6 @@ msgstr "Artan"
#: 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 Sor"
@@ -2095,11 +2078,6 @@ msgstr ""
msgid "Attachments"
msgstr "Ekler"
#. 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
@@ -2328,11 +2306,6 @@ msgstr "ayın {startOrdinal} ve {endOrdinal} arasında"
msgid "Billing"
msgstr "Faturalandırma"
#. 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"
@@ -2590,7 +2563,6 @@ msgid "Cancel metered tier switching?"
msgstr "Ölçümlenen seviye değişikliğini iptal et?"
#. js-lingui-id: rRK/Lf
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel Plan"
msgstr "Planı İptal Et"
@@ -2606,26 +2578,10 @@ msgid "Cancel plan switching?"
msgstr "Plan değişikliğini iptal et?"
#. js-lingui-id: N6gPiD
#: src/pages/settings/enterprise/SettingsEnterprise.tsx
#: src/modules/billing/components/SettingsBillingContent.tsx
msgid "Cancel your subscription"
msgstr "Aboneliğinizi iptal edin"
#. 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"
@@ -3121,6 +3077,11 @@ msgstr ""
msgid "Configure fallback login methods for users with SSO bypass permissions"
msgstr "SSO atlama izinleri olan kullanıcılar için yedek giriş yöntemlerini yapılandırın"
#. js-lingui-id: c7wznw
#: src/modules/side-panel/pages/page-layout/utils/getPageLayoutPageTitle.ts
msgid "Configure filters"
msgstr "Filtreleri yapılandır"
#. js-lingui-id: ghdb7+
#: src/modules/settings/accounts/components/SettingsAccountsCalendarChannelsGeneral.tsx
msgid "Configure how we should display your events in your calendar"
@@ -3318,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 "Devam"
@@ -3478,21 +3438,6 @@ msgstr "1k Ekstra Kredi Başına Maliyet"
msgid "Could not delete approved access domain"
msgstr "Onaylı erişim alanı silinemedi"
#. 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"
@@ -3870,7 +3815,6 @@ msgstr "Özel alan adı güncellendi"
#. 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 "Özel nesneler"
@@ -4973,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 "Ödeme yöntemini düzenleyin, faturalarınızı görün ve daha fazlası"
@@ -5274,11 +5216,6 @@ msgstr "Parolanızla birlikte bir kod gerektirerek güvenliği artırır"
msgid "Enjoy a {withCreditCardTrialPeriodDuration}-days free trial"
msgstr "{withCreditCardTrialPeriodDuration} gün süresince ücretsiz deneme süresinin tadını çıkarın"
#. 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
@@ -5485,9 +5422,6 @@ msgstr "API anahtarınızı girin"
#. 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 "Kurumsal"
@@ -5496,22 +5430,6 @@ msgstr "Kurumsal"
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"
@@ -5552,11 +5470,6 @@ msgstr "Yumuşak silinmiş kayıtların silinmesi"
msgid "Error"
msgstr "Hata"
#. 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."
@@ -5617,26 +5530,11 @@ msgstr "Mesaj yüklenirken hata oluştu"
msgid "Error Message"
msgstr "Hata Mesajı"
#. 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 "Ek telefonlar ayrıştırılırken hata: {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."
@@ -6099,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"
@@ -6481,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
@@ -6503,7 +6397,6 @@ msgid "Filter group rule options"
msgstr "Filtre grup kuralı seçenekleri"
#. js-lingui-id: cSev+j
#: src/modules/side-panel/utils/getSidePanelSubPageTitle.ts
#: src/modules/settings/developers/components/SettingsDevelopersWebhookForm.tsx
msgid "Filters"
msgstr "Filtreler"
@@ -6574,11 +6467,6 @@ msgstr "İsim"
msgid "First name can not be empty"
msgstr "Ad boş olamaz"
#. 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
@@ -6598,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 "Klasörler"
@@ -6747,22 +6635,6 @@ msgstr "Oluşturulan dosyalar"
msgid "German"
msgstr "Almanca"
#. 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."
@@ -6783,12 +6655,6 @@ msgstr "Küresel"
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"
@@ -7374,11 +7240,6 @@ msgstr ""
msgid "Inbox"
msgstr "Gelen Kutusu"
#. 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"
@@ -8021,8 +7882,9 @@ msgid "Launch manually"
msgstr "Manuel olarak başlat"
#. 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"
@@ -8095,12 +7957,6 @@ msgstr ""
msgid "Less than or equal"
msgstr "Küçük veya eşit"
#. 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
@@ -8404,8 +8260,6 @@ msgid "Manage billing and subscriptions"
msgstr "Fatura ve abonelikleri yönet"
#. 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 "Fatura bilgilerini yönet"
@@ -8758,11 +8612,6 @@ msgstr "Yılın ayı"
msgid "monthly"
msgstr "aylık"
#. 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
@@ -8824,7 +8673,7 @@ msgid "Move right"
msgstr "Sağa taşı"
#. 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 ""
@@ -9425,13 +9274,13 @@ msgid "No Files"
msgstr "Dosya Yok"
#. 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 "Klasör yok"
#. 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 ""
@@ -9605,8 +9454,8 @@ msgstr "Sonuç Yok"
#: 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 "Sonuç bulunamadı"
@@ -10339,26 +10188,11 @@ msgstr "Parola sıfırlama bağlantısı e-postaya gönderildi"
msgid "Paste the code below"
msgstr "Aşağıdaki kodu yapıştırı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 "Yol"
#. 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
@@ -10495,13 +10329,13 @@ msgid "Pick a {objectLabel} record"
msgstr "Bir {objectLabel} kaydı seç"
#. 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 ""
@@ -11119,16 +10953,6 @@ msgstr "Sürümler"
msgid "Reload"
msgstr "Yeniden Yükle"
#. 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"
@@ -11404,7 +11228,7 @@ msgstr "Sonuç"
#. 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 "Sonuçlar"
@@ -11543,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"
@@ -11666,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 "Arama"
@@ -11704,7 +11521,7 @@ msgid "Search a field..."
msgstr "Bir alan ara..."
#. 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 ""
@@ -11872,7 +11689,7 @@ msgid "Search records"
msgstr "Kayıtları ara"
#. 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 ""
@@ -11907,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 "koltuk / ay"
#. js-lingui-id: aQnWwf
#: src/modules/settings/enterprise/components/EnterprisePlanModal.tsx
#: src/modules/billing/components/SubscriptionPrice.tsx
msgid "seat / month - billed yearly"
msgstr "koltuk / ay - yıllık faturalandırılır"
@@ -12741,7 +12556,6 @@ msgstr "Tek Oturum Açma"
#. 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)"
@@ -12786,16 +12600,6 @@ msgstr ""
msgid "Start"
msgstr "Başlat"
#. 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"
@@ -12821,11 +12625,6 @@ msgid "State"
msgstr "Durum"
#. 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
@@ -13121,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 ""
@@ -13428,11 +13227,6 @@ msgstr "Eşleşmeyen veya göz ardı edilen zorunlu sütunlar var. Devam etmek i
msgid "There are still some rows that contain errors. Rows with errors will be ignored when submitting."
msgstr "Hâlâ bazı satırlarda hata var. Hatalı satırlar gönderilirken göz ardı edilecektir."
#. 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 +13339,9 @@ msgstr ""
msgid "This database value overrides environment settings. "
msgstr "Bu veritabanı değeri çevre ayarlarının üzerine yazar."
#. 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 +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 "Deneme"
@@ -14048,7 +13840,7 @@ msgid "Type anything..."
msgstr "Bir şeyler yazın..."
#. 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 +13998,6 @@ msgstr "Sınırsız kişilerle iletişim"
msgid "Unlisted"
msgstr "Liste dışı"
#. 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 +14067,6 @@ msgstr "güncelle"
msgid "Update"
msgstr "Güncelle"
#. 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 +14305,11 @@ msgstr "Varsayılan uygulama değeri kullanılıyor. Ortam değişkenleri üzeri
msgid "Using default value. Set a custom value to override."
msgstr "Varsayılan değer kullanılıyor. Üzerine yazmak için özel bir değer belirleyin."
#. 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 "Verileri doğrula"
#. 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 +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 "Fatura detaylarını görüntüle"
@@ -14716,11 +14485,6 @@ msgstr "görünüm grubu"
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 +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 "Önceki AI Sohbetlerini Görüntüle"
@@ -15089,7 +14852,6 @@ msgstr "İş Akışları"
#: 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 +15018,6 @@ msgstr "Yıl"
msgid "yearly"
msgstr "yıllık"
#. 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 +15150,6 @@ msgstr "E-posta konularınız ve toplantı başlıklarınız ekibinizle paylaş
msgid "Your emails and events content will be shared with your team."
msgstr "E-postalarınızın ve etkinlik içeriklerinizin içeriği ekibinizle paylaşılacak."
#. 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 +15160,6 @@ msgstr "Görüntülenecek adınız"
msgid "Your name as it will be displayed on the app"
msgstr "Uygulamada görüntülenecek adınız"
#. 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