Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
898a46621b | ||
|
|
a823ef15cb | ||
|
|
3277830400 | ||
|
|
280bdcf9ea | ||
|
|
dea94b9ffa | ||
|
|
669e985b6a | ||
|
|
41449fc999 | ||
|
|
4e6cf185fa | ||
|
|
001b7285e6 | ||
|
|
ec7d19a3af | ||
|
|
ed07afa774 | ||
|
|
b284c8323c | ||
|
|
34a903b4fa | ||
|
|
aed81a54a2 | ||
|
|
847e7124d7 | ||
|
|
186bc02533 | ||
|
|
e03ac126ab | ||
|
|
63c407e2f7 | ||
|
|
4b3a46d953 |
+12
-9
@@ -71,10 +71,10 @@ npx nx build twenty-server
|
||||
# Database management
|
||||
npx nx database:reset twenty-server # Reset database
|
||||
npx nx run twenty-server:database:init:prod # Initialize database
|
||||
npx nx run twenty-server:database:migrate:prod # Run migrations
|
||||
npx nx run twenty-server:database:migrate:prod # Run instance commands (fast only)
|
||||
|
||||
# Generate migration
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
# Generate an instance command (fast or slow)
|
||||
npx nx run twenty-server:database:migrate:generate --name <name> --type <fast|slow>
|
||||
```
|
||||
|
||||
### Database Inspection (Postgres MCP)
|
||||
@@ -158,14 +158,17 @@ packages/
|
||||
- **Redis** for caching and session management
|
||||
- **BullMQ** for background job processing
|
||||
|
||||
### Database & Migrations
|
||||
### Database & Upgrade Commands
|
||||
- **PostgreSQL** as primary database
|
||||
- **Redis** for caching and sessions
|
||||
- **ClickHouse** for analytics (when enabled)
|
||||
- Always generate migrations when changing entity files
|
||||
- Migration names must be kebab-case (e.g. `add-agent-turn-evaluation`)
|
||||
- Include both `up` and `down` logic in migrations
|
||||
- Never delete or rewrite committed migrations
|
||||
- When changing entity files, generate an **instance command** (`database:migrate:generate --name <name> --type <fast|slow>`)
|
||||
- **Fast** instance commands handle schema changes; **slow** ones add a `runDataMigration` step for data backfills
|
||||
- **Workspace commands** iterate over all active/suspended workspaces for per-workspace upgrades
|
||||
- Commands use `@RegisteredInstanceCommand` and `@RegisteredWorkspaceCommand` decorators for automatic discovery
|
||||
- Include both `up` and `down` logic in instance commands
|
||||
- Never delete or rewrite committed instance command `up`/`down` logic
|
||||
- See `packages/twenty-server/docs/UPGRADE_COMMANDS.md` for full documentation
|
||||
|
||||
### Utility Helpers
|
||||
Use existing helpers from `twenty-shared` instead of manual type guards:
|
||||
@@ -178,7 +181,7 @@ IMPORTANT: Use Context7 for code generation, setup or configuration steps, or li
|
||||
### Before Making Changes
|
||||
1. Always run linting (`lint:diff-with-main`) and type checking after code changes
|
||||
2. Test changes with relevant test suites (prefer single-file test runs)
|
||||
3. Ensure database migrations are generated for entity changes
|
||||
3. Ensure instance commands are generated for entity changes (`database:migrate:generate`)
|
||||
4. Check that GraphQL schema changes are backward compatible
|
||||
5. Run `graphql:generate` after any GraphQL schema changes
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ This directory contains Twenty's development guidelines and best practices in th
|
||||
### Core Guidelines
|
||||
- **architecture.mdc** - Project overview, technology stack, and infrastructure setup (Always Applied)
|
||||
- **nx-rules.mdc** - Nx workspace guidelines and best practices (Auto-attached to Nx files)
|
||||
- **server-migrations.mdc** - Backend migration and TypeORM guidelines for `twenty-server` (Auto-attached to server entities and migration files)
|
||||
- **server-migrations.mdc** - Upgrade command guidelines (instance commands and workspace commands) for `twenty-server` (Auto-attached to server entities and upgrade command files)
|
||||
- **creating-syncable-entity.mdc** - Comprehensive guide for creating new syncable entities (with universalIdentifier and applicationId) in the workspace migration system (Agent-requested for metadata-modules and workspace-migration files)
|
||||
|
||||
### Code Quality
|
||||
@@ -81,10 +81,8 @@ npx nx run twenty-server:typecheck # Type checking
|
||||
npx nx run twenty-server:test # Run unit tests
|
||||
npx nx run twenty-server:test:integration:with-db-reset # Run integration tests
|
||||
|
||||
# Migrations
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
|
||||
# Workspace
|
||||
# Upgrade commands (instance + workspace)
|
||||
npx nx run twenty-server:database:migrate:generate --name <name> --type <fast|slow>
|
||||
```
|
||||
|
||||
## Usage Guidelines
|
||||
|
||||
@@ -55,7 +55,8 @@ If feature descriptions are not provided or need enhancement, research the codeb
|
||||
- Services: Look for `*.service.ts` files
|
||||
|
||||
**For Database/ORM Changes:**
|
||||
- Migrations: `packages/twenty-server/src/database/typeorm/`
|
||||
- Instance commands (fast/slow): `packages/twenty-server/src/database/commands/upgrade-version-command/`
|
||||
- Legacy TypeORM migrations: `packages/twenty-server/src/database/typeorm/`
|
||||
- Entities: `packages/twenty-server/src/entities/`
|
||||
|
||||
### Research Commands
|
||||
|
||||
@@ -1,27 +1,46 @@
|
||||
---
|
||||
description: Guidelines for generating and managing TypeORM migrations in twenty-server
|
||||
description: Guidelines for generating and managing upgrade commands (instance commands and workspace commands) in twenty-server
|
||||
globs: [
|
||||
"packages/twenty-server/src/**/*.entity.ts",
|
||||
"packages/twenty-server/src/database/typeorm/**/*.ts"
|
||||
"packages/twenty-server/src/database/commands/upgrade-version-command/**/*.ts"
|
||||
]
|
||||
alwaysApply: false
|
||||
---
|
||||
|
||||
## Server Migrations (twenty-server)
|
||||
## Upgrade Commands (twenty-server)
|
||||
|
||||
- **When changing an entity, always generate a migration**
|
||||
- If you modify a `*.entity.ts` file in `packages/twenty-server/src`, you **must** generate a corresponding TypeORM migration instead of manually editing the database schema.
|
||||
- Use the Nx command from the project root:
|
||||
The upgrade system uses two types of commands instead of raw TypeORM migrations:
|
||||
- **Instance commands** — schema and data migrations that run once at the instance level.
|
||||
- **Workspace commands** — commands that iterate over all active/suspended workspaces.
|
||||
|
||||
See `packages/twenty-server/docs/UPGRADE_COMMANDS.md` for full documentation.
|
||||
|
||||
### Instance Commands
|
||||
|
||||
- **When changing a `*.entity.ts` file**, generate an instance command:
|
||||
|
||||
```bash
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
npx nx run twenty-server:database:migrate:generate --name <name> --type <fast|slow>
|
||||
```
|
||||
|
||||
- **Prefer generated migrations over manual edits**
|
||||
- Let TypeORM infer schema changes from the updated entities; only adjust the generated migration file manually if absolutely necessary (for example, for data backfills or complex constraints).
|
||||
- Keep schema changes (DDL) in these generated migrations and avoid mixing in heavy data migrations unless there is a strong reason and clear comments.
|
||||
- **Fast commands** (`--type fast`, default) are for schema-only changes that must run immediately. They implement `FastInstanceCommand` with `up`/`down` methods and use the `@RegisteredInstanceCommand` decorator.
|
||||
|
||||
- **Keep migrations consistent and reversible**
|
||||
- Ensure the generated migration includes both `up` and `down` logic that correctly applies and reverts the entity change when possible.
|
||||
- Do not delete or rewrite existing, committed migrations unless you are explicitly working on a pre-release branch where history rewrites are allowed by team conventions.
|
||||
- **Slow commands** (`--type slow`) add a `runDataMigration` method for potentially long-running data backfills that execute before `up`. They only run when `--include-slow` is passed. Use the decorator with `{ type: 'slow' }`.
|
||||
|
||||
- The generator auto-registers the command in `instance-commands.constant.ts` — do not edit that file manually.
|
||||
|
||||
- **Keep commands consistent and reversible**: include both `up` and `down` logic. Do not delete or rewrite existing, committed commands unless on a pre-release branch.
|
||||
|
||||
### Workspace Commands
|
||||
|
||||
- Use the `@RegisteredWorkspaceCommand` decorator alongside nest-commander's `@Command` decorator.
|
||||
- Extend `ActiveOrSuspendedWorkspaceCommandRunner` and implement `runOnWorkspace`.
|
||||
- The base class provides `--dry-run`, `--verbose`, and workspace filter options automatically.
|
||||
|
||||
### Execution Order
|
||||
|
||||
Within a given version, commands run in this order (timestamp-sorted within each group):
|
||||
1. Instance fast commands
|
||||
2. Instance slow commands (only with `--include-slow`)
|
||||
3. Workspace commands
|
||||
|
||||
|
||||
@@ -53,3 +53,4 @@ mcp.json
|
||||
TRANSLATION_QA_REPORT.md
|
||||
.playwright-mcp/
|
||||
.playwright-cli/
|
||||
output/playwright/
|
||||
|
||||
@@ -71,10 +71,10 @@ npx nx build twenty-server
|
||||
# Database management
|
||||
npx nx database:reset twenty-server # Reset database
|
||||
npx nx run twenty-server:database:init:prod # Initialize database
|
||||
npx nx run twenty-server:database:migrate:prod # Run migrations
|
||||
npx nx run twenty-server:database:migrate:prod # Run instance commands (fast only)
|
||||
|
||||
# Generate migration
|
||||
npx nx run twenty-server:database:migrate:generate
|
||||
# Generate an instance command (fast or slow)
|
||||
npx nx run twenty-server:database:migrate:generate --name <name> --type <fast|slow>
|
||||
```
|
||||
|
||||
### Database Inspection (Postgres MCP)
|
||||
@@ -158,14 +158,17 @@ packages/
|
||||
- **Redis** for caching and session management
|
||||
- **BullMQ** for background job processing
|
||||
|
||||
### Database & Migrations
|
||||
### Database & Upgrade Commands
|
||||
- **PostgreSQL** as primary database
|
||||
- **Redis** for caching and sessions
|
||||
- **ClickHouse** for analytics (when enabled)
|
||||
- Always generate migrations when changing entity files
|
||||
- Migration names must be kebab-case (e.g. `add-agent-turn-evaluation`)
|
||||
- Include both `up` and `down` logic in migrations
|
||||
- Never delete or rewrite committed migrations
|
||||
- When changing entity files, generate an **instance command** (`database:migrate:generate --name <name> --type <fast|slow>`)
|
||||
- **Fast** instance commands handle schema changes; **slow** ones add a `runDataMigration` step for data backfills
|
||||
- **Workspace commands** iterate over all active/suspended workspaces for per-workspace upgrades
|
||||
- Commands use `@RegisteredInstanceCommand` and `@RegisteredWorkspaceCommand` decorators for automatic discovery
|
||||
- Include both `up` and `down` logic in instance commands
|
||||
- Never delete or rewrite committed instance command `up`/`down` logic
|
||||
- See `packages/twenty-server/docs/UPGRADE_COMMANDS.md` for full documentation
|
||||
|
||||
### Utility Helpers
|
||||
Use existing helpers from `twenty-shared` instead of manual type guards:
|
||||
@@ -178,7 +181,7 @@ IMPORTANT: Use Context7 for code generation, setup or configuration steps, or li
|
||||
### Before Making Changes
|
||||
1. Always run linting (`lint:diff-with-main`) and type checking after code changes
|
||||
2. Test changes with relevant test suites (prefer single-file test runs)
|
||||
3. Ensure database migrations are generated for entity changes
|
||||
3. Ensure instance commands are generated for entity changes (`database:migrate:generate`)
|
||||
4. Check that GraphQL schema changes are backward compatible
|
||||
5. Run `graphql:generate` after any GraphQL schema changes
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@
|
||||
"test:watch": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-client-sdk": "0.8.0-canary.5",
|
||||
"twenty-sdk": "0.8.0-canary.5"
|
||||
"twenty-client-sdk": "0.9.0",
|
||||
"twenty-sdk": "0.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^24.7.2",
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -19,8 +19,8 @@
|
||||
"test:watch": "vitest"
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-client-sdk": "0.8.0-canary.8",
|
||||
"twenty-sdk": "0.8.0-canary.8"
|
||||
"twenty-client-sdk": "0.9.0",
|
||||
"twenty-sdk": "0.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^24.7.2",
|
||||
|
||||
@@ -3317,8 +3317,8 @@ __metadata:
|
||||
oxlint: "npm:^0.16.0"
|
||||
react: "npm:^19.0.0"
|
||||
react-dom: "npm:^19.0.0"
|
||||
twenty-client-sdk: "npm:0.8.0-canary.8"
|
||||
twenty-sdk: "npm:0.8.0-canary.8"
|
||||
twenty-client-sdk: "npm:0.9.0"
|
||||
twenty-sdk: "npm:0.9.0"
|
||||
typescript: "npm:^5.9.3"
|
||||
vite-tsconfig-paths: "npm:^4.2.1"
|
||||
vitest: "npm:^3.1.1"
|
||||
@@ -4059,21 +4059,21 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"twenty-client-sdk@npm:0.8.0-canary.8":
|
||||
version: 0.8.0-canary.8
|
||||
resolution: "twenty-client-sdk@npm:0.8.0-canary.8"
|
||||
"twenty-client-sdk@npm:0.9.0":
|
||||
version: 0.9.0
|
||||
resolution: "twenty-client-sdk@npm:0.9.0"
|
||||
dependencies:
|
||||
"@genql/cli": "npm:^3.0.3"
|
||||
"@genql/runtime": "npm:^2.10.0"
|
||||
esbuild: "npm:^0.25.0"
|
||||
graphql: "npm:^16.8.1"
|
||||
checksum: 10c0/acb5bf952a9729811235a3474ccb4db82630c53a2caed03176bfb4f442576ee2ef7e625886f63714e2534f7ec83b03d83e4c0b1170a0eb816c531acfc2c98010
|
||||
checksum: 10c0/4b42a6622a9852fc3eca50c1131b116c5602af006ee5f1d3b4f1e97721bbc8ef5c2f3b60d9dee3ca9ca8c3c7ad4b292a7b55007b779b4c042997dbc29940ba54
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"twenty-sdk@npm:0.8.0-canary.8":
|
||||
version: 0.8.0-canary.8
|
||||
resolution: "twenty-sdk@npm:0.8.0-canary.8"
|
||||
"twenty-sdk@npm:0.9.0":
|
||||
version: 0.9.0
|
||||
resolution: "twenty-sdk@npm:0.9.0"
|
||||
dependencies:
|
||||
"@genql/cli": "npm:^3.0.3"
|
||||
"@genql/runtime": "npm:^2.10.0"
|
||||
@@ -4093,7 +4093,7 @@ __metadata:
|
||||
react: "npm:^19.0.0"
|
||||
react-dom: "npm:^19.0.0"
|
||||
tinyglobby: "npm:^0.2.15"
|
||||
twenty-client-sdk: "npm:0.8.0-canary.8"
|
||||
twenty-client-sdk: "npm:0.9.0"
|
||||
typescript: "npm:^5.9.2"
|
||||
uuid: "npm:^13.0.0"
|
||||
vite: "npm:^7.0.0"
|
||||
@@ -4101,7 +4101,7 @@ __metadata:
|
||||
zod: "npm:^4.1.11"
|
||||
bin:
|
||||
twenty: dist/cli.cjs
|
||||
checksum: 10c0/a22cf071f41c19d769e68a995912a0bda0f087bd9a295534bf9e545544f6dfc84f284a477f9011fc135f2a44de9372b977a66de06454e760822119e76921ea69
|
||||
checksum: 10c0/27f93e5edac3265f819abacc853598435718020258a95d55518562e086e42daabae784964b42005d8e4ff30d1d6f13a12a38c656e18c60bad98da3f579a8e1c3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
@@ -16,7 +16,8 @@
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
"twenty-sdk": "latest",
|
||||
"twenty-client-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
|
||||
@@ -14,7 +14,8 @@
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
"twenty-sdk": "latest",
|
||||
"twenty-client-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
|
||||
@@ -14,7 +14,8 @@
|
||||
"lint:fix": "oxlint --fix -c .oxlintrc.json ."
|
||||
},
|
||||
"dependencies": {
|
||||
"twenty-sdk": "latest"
|
||||
"twenty-sdk": "latest",
|
||||
"twenty-client-sdk": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^5.9.3",
|
||||
|
||||
@@ -16,8 +16,6 @@ const OBJECTS_TO_GENERATE = [
|
||||
'note',
|
||||
'timelineActivity',
|
||||
'workspaceMember',
|
||||
'favorite',
|
||||
'favoriteFolder',
|
||||
'connectedAccount',
|
||||
'calendarEvent',
|
||||
];
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1134,12 +1134,6 @@ msgstr "Voeg by tot swartlys"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Voeg by tot gunstelinge"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Voeg by tot gunstelinge"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Sluit banier"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Maak sypaneel toe"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Opgestel"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bevestig"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Inhoud"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Konteks"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Skep profiel"
|
||||
msgid "Create Profile"
|
||||
msgstr "Skep profiel"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Skep Verwante Rekord"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "verwyder"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Wysig Rekening"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Verval oor {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Voer uit"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Mislukkingskoers"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Gaan na die faktureringsportaal"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Gaan na Konsep"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Gaan na Mense"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Versteek versteekte groepe"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Geen rekord is nodig om hierdie werkvloei te aktiveer nie"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objek"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Maak Outlook oop"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Maak sypaneel oop"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Rangskik"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Ander"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Hangend"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Mense"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Pienk"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Rekords"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Herstel 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Herstel na"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Herstel na Verstek"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultaat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultate"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "إضافة إلى القائمة السوداء"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "إضافة إلى المفضلة"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "إضافة إلى المفضلات"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "إغلاق اللافتة"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "إغلاق اللوحة الجانبية"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "تم الإعداد"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "تأكيد"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "المحتوى"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "السياق"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "إنشاء ملف شخصي"
|
||||
msgid "Create Profile"
|
||||
msgstr "إنشاء ملف شخصي"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "إنشاء سجل ذو صلة"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "حذف"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "تحرير الحساب"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "ينتهي في {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "تصدير"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "معدل الفشل"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "انتقل إلى بوابة الفوترة"
|
||||
msgid "Go to Draft"
|
||||
msgstr "اذهب إلى المسودة"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "اذهب إلى الأشخاص"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "إخفاء المجموعات المخفية"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "المزيد"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "لا يتطلب سجل لتفعيل سير العمل هذا"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "كائن"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "فتح Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "فتح اللوحة الجانبية"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "تنظيم"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "أخرى"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "قيد الانتظار"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "الأشخاص"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "وردي"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "السجلات"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "إعادة تعيين المصادقة الثنائية"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "\\\\"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "إعادة التعيين إلى الافتراضي"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "النتيجة"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "\\\\"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Afegeix a la llista de bloqueig"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Afegeix a les preferides"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Afegeix a les preferides"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Tanca el bàner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Tanca el panell lateral"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Configurat"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Contingut"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Crea perfil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Crea perfil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Crea Registre Relacionat"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "elimina"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Edita el compte"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Caduca en {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Taxa de fallades"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Aneu al portal de facturació"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Anar a l'esborrany"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Anar a Persones"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Amaga grups ocults"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Més"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "No es requereix cap registre per activar aquest flux de treball"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objecte"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Obrir en Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Obre el panell lateral"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organitza"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Altres"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Pendent"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Persones"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Registres"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Reinicia 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Reinicia a"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Restableix a predeterminat"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultats"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Přidat do seznamu blokovaných"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Přidat do oblíbených"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Přidat do oblíbených"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Zavřít banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Zavřít postranní panel"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Nakonfigurováno"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdit"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Obsah"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontext"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Vytvořit profil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Vytvořit profil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Vytvořit související záznam"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "smazat"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Upravit účet"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Vyprší za {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportovat"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Míra selhání"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Přejít na fakturační portál"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Přejít na koncept"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Přejít na lidi"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Skrýt skryté skupiny"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Více"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "K aktivaci tohoto pracovního postupu není vyžadován žádný záznam"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Otevřít Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Otevřít postranní panel"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Uspořádat"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Ostatní"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Čekající"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Osoby"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Růžová"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Záznamy"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Obnovit 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Obnovit na"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Obnovit na výchozí"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Výsledek"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Výsledky"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Tilføj til blokeringsliste"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Tilføj til Favorit"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Tilføj til favoritter"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Luk banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Luk sidepanelet"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Konfigureret"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bekræft"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Indhold"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontekst"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Opret profil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Opret profil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Opret relateret post"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "slet"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Rediger konto"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Udløber om {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Eksport"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Fejlrate"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Gå til faktureringsportalen"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Gå til kladde"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Gå til personer"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Skjul skjulte grupper"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Mere"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Ingen post kræves for at aktivere denne workflow"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Åbn Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Åbn sidepanelet"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organiser"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Andet"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Afventer"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Personer"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Pink"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Protokoller"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Nulstil 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Nulstil til"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Nulstil til standard"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultater"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Zur Blockliste hinzufügen"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Zu Favoriten hinzufügen"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Zu Favoriten hinzufügen"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Banner schließen"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Seitenpanel schließen"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Konfiguriert"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Inhalt"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontext"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Profil erstellen"
|
||||
msgid "Create Profile"
|
||||
msgstr "Profil erstellen"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Verknüpfte Aufzeichnung erstellen"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "löschen"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Konto bearbeiten"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Läuft ab in {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportieren"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Fehlerquote"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Zum Abrechnungsportal wechseln"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Zum Entwurf gehen"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Gehe zu Personen"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Verborgene Gruppen ausblenden"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Mehr"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Kein Datensatz ist erforderlich, um diesen Arbeitsablauf zu starten"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Outlook öffnen"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Seitenpanel öffnen"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organisieren"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Andere"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Ausstehend"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Personen"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Pink"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Datensätze"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "2FA zurücksetzen"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Zurücksetzen auf"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Auf Standard zurücksetzen"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Ergebnis"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Ergebnisse"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Προσθήκη στη λίστα αποκλεισμού"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Προσθήκη στα Αγαπημένα"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Προσθήκη στα αγαπημένα"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Κλείσιμο banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Κλείσιμο πλευρικού πάνελ"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Ρυθμισμένο"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Επιβεβαίωση"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Περιεχόμενο"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Περιβάλλον"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Δημιουργήστε προφίλ"
|
||||
msgid "Create Profile"
|
||||
msgstr "Δημιουργία προφίλ"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Δημιουργήστε Σχετική Εγγραφή"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "διαγραφή"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Επεξεργασία Λογαριασμού"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Λήγει σε {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Εξαγωγή"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Ποσοστό αποτυχίας"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Μετάβαση στην πύλη χρέωσης"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Μετάβαση στο Προσχέδιο"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Πηγαίνετε στους Ανθρώπους"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Απόκρυψη κρυφών ομάδων"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Περισσότερα"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Δεν απαιτείται καμία εγγραφή για να ενεργοποιήσετε αυτήν τη ροή εργασιών"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "αντικείμενο"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Άνοιγμα με Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Άνοιγμα πλευρικού πάνελ"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Οργάνωση"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Άλλο"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Εκκρεμεί"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Άνθρωποι"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Ροζ"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Εγγραφές"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Επαναφορά 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Επαναφορά σε"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Επαναφορά στις Προεπιλογές"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Αποτέλεσμα"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Αποτελέσματα"
|
||||
|
||||
@@ -1129,12 +1129,6 @@ msgstr "Add to blocklist"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Add to Favorite"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Add to favorites"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3149,7 +3143,7 @@ msgstr "Close banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Close side panel"
|
||||
|
||||
@@ -3426,7 +3420,6 @@ msgstr "Configured"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirm"
|
||||
|
||||
@@ -3531,7 +3524,7 @@ msgstr "Content"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -3915,11 +3908,6 @@ msgstr "Create profile"
|
||||
msgid "Create Profile"
|
||||
msgstr "Create Profile"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Create Related Record"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4633,8 +4621,6 @@ msgstr "delete"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5242,8 +5228,8 @@ msgstr "Edit Account"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr "Edit actions"
|
||||
|
||||
@@ -6321,8 +6307,6 @@ msgstr "Expires in {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
|
||||
@@ -6617,7 +6601,7 @@ msgid "Failure Rate"
|
||||
msgstr "Failure Rate"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr "Fallback"
|
||||
|
||||
@@ -7154,11 +7138,6 @@ msgstr "Go to billing portal"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Go to Draft"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Go to People"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7384,7 +7363,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Hide hidden groups"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr "Hide label"
|
||||
|
||||
@@ -9234,7 +9213,7 @@ msgstr "months"
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "More"
|
||||
|
||||
@@ -10073,8 +10052,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "No record is required to trigger this workflow"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr "No record selected"
|
||||
|
||||
@@ -10367,7 +10346,6 @@ msgstr "object"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10625,7 +10603,7 @@ msgstr "Open Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Open side panel"
|
||||
|
||||
@@ -10718,8 +10696,8 @@ msgstr "Organize"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Other"
|
||||
|
||||
@@ -10935,11 +10913,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Pending"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "People"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11077,8 +11050,8 @@ msgid "Pink"
|
||||
msgstr "Pink"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr "Pinned"
|
||||
|
||||
@@ -11651,8 +11624,8 @@ msgid "Records"
|
||||
msgstr "Records"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr "Records selected"
|
||||
|
||||
@@ -11962,7 +11935,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Reset 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr "Reset label to default"
|
||||
|
||||
@@ -11977,7 +11950,7 @@ msgstr "Reset to"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Reset to default"
|
||||
|
||||
@@ -12054,7 +12027,7 @@ msgid "Result"
|
||||
msgstr "Result"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Results"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Añadir a la lista de bloqueo"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Añadir a favoritos"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Añadir a favoritos"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Cerrar banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Cerrar panel lateral"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Configurado"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Contenido"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexto"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Crear perfil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Crear perfil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Crear registro relacionado"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "eliminar"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Editar Cuenta"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Expira en {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Tasa de fallos"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Ir al portal de facturación"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Ir a Borrador"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Ir a Personas"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Ocultar grupos ocultos"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Más"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "No se requiere ningún registro para activar este flujo de trabajo"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Abrir Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Abrir panel lateral"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organizar"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Otros"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Pendiente"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Personas"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Registros"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Restablecer 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Restablecer a"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Restablecer a predeterminado"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultado"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultados"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Lisää estolistalle"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Lisää suosikkilistalle"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Lisää suosikkeihin"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Sulje banneri"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Sulje sivupaneeli"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Määritetty"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Vahvista"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Sisältö"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Yhteys"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Luo profiili"
|
||||
msgid "Create Profile"
|
||||
msgstr "Luo profiili"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Luo liittyvä tietue"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "poista"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Muokkaa tiliä"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Vanhenee {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Vie"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Epäonnistumisprosentti"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Siirry laskutusportaaliin"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Siirry luonnokseen"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Siirry henkilöihin"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Piilota piilotetut ryhmät"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Lisää"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Ei tietuetta tarvita tämän työnkulun käynnistämiseen"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objekti"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Avaa Outlookissa"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Avaa sivupaneeli"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr ""
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Muu"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Odottaa"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Henkilöt"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Vaaleanpunainen"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Tietueet"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Nollaa 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Palauta"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Palauta oletukseksi"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Tulos"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Tulokset"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Ajouter à la liste de blocage"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Ajouter aux favoris"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Ajouter aux favoris"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Fermer la bannière"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Fermer le panneau latéral"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr ""
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Contenu"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexte"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Créer un profil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Créer un profil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Créer un enregistrement associé"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "supprimer"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Modifier le compte"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Expire dans {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Taux d'échec"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Accéder au portail de facturation"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Aller au brouillon"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Aller aux personnes"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Masquer les groupes cachés"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Plus"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Aucun enregistrement n'est requis pour déclencher ce flux de travail"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objet"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Ouvrir Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Ouvrir le panneau latéral"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organiser"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Autres"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "En attente"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Personnes"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rose"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Enregistrements"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Réinitialiser 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Réinitialiser à"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Réinitialiser par défaut"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Résultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Résultats"
|
||||
|
||||
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
@@ -1134,12 +1134,6 @@ msgstr "הוסף לרשימת החסימה"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "הוסף למועדפים"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "הוסף למועדפים"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "סגור באנר"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "סגור את חלונית הצד"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "מוגדר"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "אישור"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "תוכן"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "הקשר"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "צור פרופיל"
|
||||
msgid "Create Profile"
|
||||
msgstr "צור פרופיל"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "צור רשומה קשורה"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "מחק"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "ערוך חשבון"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "פוקע בעוד {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "יצוא"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "שיעור כשל"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "עבור לפורטל החיוב"
|
||||
msgid "Go to Draft"
|
||||
msgstr "עבור לטיוטה"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "עבור לאנשים"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "הסתר קבוצות מוסתרות"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "עוד"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "לא נדרש תיעוד להפעלת תהליך עבודה זה"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "אובייקט"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "פתח ב-Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "פתח את חלונית הצד"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "ארגון"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "אחר"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "<span dir=\"rtl\">ממתין</span>"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "אנשים"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "ורוד"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "רישומים"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "אתחל אימות דו-שלבי"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "\\"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "איפוס לברירת מחדל"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "תוצאה"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "\\"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Hozzáadás a tiltólistához"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Hozzáadás a Kedvencekhez"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Hozzáadás a kedvencekhez"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Banner bezárása"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Oldalsó panel bezárása"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Beállítva"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Megerősítés"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Tartalom"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Összefüggés"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Profil létrehozása"
|
||||
msgid "Create Profile"
|
||||
msgstr "Profil létrehozása"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Kapcsolódó rekord létrehozása"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "törlés"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Fiók szerkesztése"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Lejár {dateDiff} alatt"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportálás"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Hibaarány"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Tovább a számlázási portálra"
|
||||
msgid "Go to Draft"
|
||||
msgstr "\"Ugrás a piszkozatokhoz\""
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Ugrás az emberekhez"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Rejtett csoportok elrejtése"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Több"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Nincs szükség rekordra ennek a munkafolyamatnak a elindításához"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objektum"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Outlook megnyitása"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Oldalsó panel megnyitása"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Rendszerezés"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Egyéb"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Függőben"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Emberek"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rózsaszín"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Rekordok"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "2FA visszaállítása"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Visszaállítás"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Visszaállítás alapértelmezettre"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Eredmény"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Találatok"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Aggiungi alla lista di blocco"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Aggiungi ai Preferiti"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Aggiungi ai preferiti"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Chiudi banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Chiudi il pannello laterale"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Configurato"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Conferma"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Contenuto"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contesto"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Crea profilo"
|
||||
msgid "Create Profile"
|
||||
msgstr "Crea profilo"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Crea record correlato"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "elimina"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Modifica Account"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Scade tra {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Esporta"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Tasso di errore"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Vai al portale di fatturazione"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Vai alla Bozza"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Vai alle Persone"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Nascondi gruppi nascosti"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Altro"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Non è richiesto alcun record per attivare questo flusso di lavoro"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "oggetto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Aprire Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Apri il pannello laterale"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organizza"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Altro"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "In sospeso"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Persone"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Registri"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Reimposta 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Reimposta a"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Ripristina ai valori predefiniti"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Risultato"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Risultati"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "ブロックリストに追加"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "お気に入りに追加"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "お気に入りに追加"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "バナーを閉じる"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "サイドパネルを閉じる"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "設定済み"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "確認"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "コンテンツ"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "コンテキスト"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "プロフィールの作成"
|
||||
msgid "Create Profile"
|
||||
msgstr "プロフィールを作成"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "関連レコードを作成"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "削除"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "アカウントを編集する"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "{dateDiff} で期限が切れます"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "エクスポート"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "失敗率"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "請求ポータルに移動"
|
||||
msgid "Go to Draft"
|
||||
msgstr "ドラフトに移動"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "人事に移動"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "隠されたグループを非表示"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "もっと"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "このワークフローを起動するために必要なレコードはありません"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "オブジェクト"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Outlookで開く"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "サイドパネルを開く"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "整理"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "その他"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "保留中"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "\"人\""
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "ピンク"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "レコード"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "2FAをリセット"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "リセット"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "デフォルトにリセット"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "結果"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "結果"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "차단 목록에 추가"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "즐겨찾기에 추가"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "즐겨찾기에 추가"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "배너 닫기"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "사이드 패널 닫기"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "구성됨"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "확인"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "내용"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "컨텍스트"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "프로필 생성"
|
||||
msgid "Create Profile"
|
||||
msgstr "프로필 생성"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "연관 레코드 생성"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "삭제"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "계정 편집"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "{dateDiff}에 만료"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "내보내기"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "실패율"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "청구 포털로 이동"
|
||||
msgid "Go to Draft"
|
||||
msgstr "초안으로 이동"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "사람으로 이동"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "숨겨진 그룹 숨기기"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "더보기"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "이 워크플로우를 트리거하기 위해 기록이 필요하지 않습니다."
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "개체"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Outlook 열기"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "사이드 패널 열기"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "정리"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "기타"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "보류 중"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "사람들"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "분홍색"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "레코드"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "이중 인증 재설정"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "다음으로 재설정"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "기본값으로 재설정"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "결과"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "결과"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Toevoegen aan blokkeerlijst"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Toevoegen aan favoriet"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Toevoegen aan favorieten"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Banner sluiten"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Zijpaneel sluiten"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Geconfigureerd"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bevestigen"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Inhoud"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Profiel aanmaken"
|
||||
msgid "Create Profile"
|
||||
msgstr "Profiel aanmaken"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Gerelateerd record aanmaken"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "verwijderen"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Account bewerken"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Verloopt over {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exporteren"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Foutpercentage"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Ga naar het factureringsportaal"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Ga naar concept"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Ga naar Personen"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Verborgen groepen verbergen"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Er is geen record vereist om deze workflow te activeren"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "object"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Open Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Zijpaneel openen"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Ordenen"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Overige"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "In afwachting"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Personen"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Roze"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Records"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Reset 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Reset naar"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Herstel naar standaard"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultaat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultaten"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Legg til i blokkeringsliste"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Legg til i Favoritter"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Favorittmarkere"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Lukk banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Lukk sidepanelet"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Konfigurert"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bekreft"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Innhold"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontekst"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Opprett profil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Opprett profil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Opprett relatert post"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "slett"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Rediger konto"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Utløper om {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Eksporter"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Feilrate"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Gå til faktureringsportalen"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Gå til utkast"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Gå til Personer"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Skjul skjulte grupper"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Mer"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Ingen post er nødvendig for å utløse denne arbeidsflyten"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Åpne Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Åpne sidepanelet"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organiser"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Annen"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Avventer"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Personer"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Poster"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Tilbakestill 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Tilbakestill til"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Nullstill til standard"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultater"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Dodaj do listy blokowanych"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Dodaj do ulubionych"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Dodaj do ulubionych"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Zamknij baner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Zamknij panel boczny"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Skonfigurowane"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Potwierdź"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Zawartość"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Kontekst"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Stwórz profil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Stwórz profil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Utwórz powiązany rekord"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "usuń"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Edytuj Konto"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Wygasa za {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Wyeksportuj"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Wskaźnik niepowodzeń"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Przejdź do portalu rozliczeń"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Przejdź do wersji roboczej"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Przejdź do ludzi"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Ukryj ukryte grupy"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Więcej"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Do uruchomienia tego procesu roboczego nie jest wymagany żaden zapis"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "obiekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Otwórz Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Otwórz panel boczny"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organizuj"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Inne"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Oczekujące"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "\"Osoby\""
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Różowy"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Rekordy"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Resetuj 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Zresetuj do"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Przywróć domyślne"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Wynik"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Wyniki"
|
||||
|
||||
@@ -1129,12 +1129,6 @@ msgstr ""
|
||||
msgid "Add to Favorite"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3149,7 +3143,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr ""
|
||||
|
||||
@@ -3426,7 +3420,6 @@ msgstr ""
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
@@ -3531,7 +3524,7 @@ msgstr ""
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr ""
|
||||
@@ -3915,11 +3908,6 @@ msgstr ""
|
||||
msgid "Create Profile"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4633,8 +4621,6 @@ msgstr ""
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5242,8 +5228,8 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6321,8 +6307,6 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
@@ -6617,7 +6601,7 @@ msgid "Failure Rate"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7154,11 +7138,6 @@ msgstr ""
|
||||
msgid "Go to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7384,7 +7363,7 @@ msgid "Hide hidden groups"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9234,7 +9213,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
@@ -10073,8 +10052,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10367,7 +10346,6 @@ msgstr ""
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10625,7 +10603,7 @@ msgstr ""
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
@@ -10718,8 +10696,8 @@ msgstr ""
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
@@ -10935,11 +10913,6 @@ msgstr ""
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11077,8 +11050,8 @@ msgid "Pink"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11651,8 +11624,8 @@ msgid "Records"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11962,7 +11935,7 @@ msgid "Reset 2FA"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11977,7 +11950,7 @@ msgstr ""
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -12054,7 +12027,7 @@ msgid "Result"
|
||||
msgstr ""
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr ""
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Adicionar à Lista de Bloqueio"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Adicionar aos Favoritos"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Adicionar aos Favoritos"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Fechar banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr ""
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Configurado"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Conteúdo"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexto"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Criar perfil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Criar perfil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Criar Registro Relacionado"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "excluir"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Editar Conta"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Expira em {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Taxa de falhas"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Ir para o portal de faturamento"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Ir para Rascunho"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Ir para Pessoas"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Ocultar grupos ocultos"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Mais"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Abrir Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr ""
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organizar"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Outros"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Pendente"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Pessoas"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Registros"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Redefinir 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Redefinir para"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Redefinir para o Padrão"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultado"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultados"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Adicionar à lista de bloqueio"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Adicionar aos favoritos"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Adicionar aos favoritos"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Fechar banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Fechar painel lateral"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Configurado"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Conteúdo"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Contexto"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Criar perfil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Criar perfil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Criar Registo Relacionado"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "eliminar"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Editar Conta"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Expira em {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Taxa de falhas"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Ir para o portal de faturação"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Ir para o Rascunho"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Ir para Pessoas"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Ocultar grupos ocultos"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Mais"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Nenhum registro é necessário para acionar este fluxo de trabalho"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "objeto"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Abrir Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Abrir painel lateral"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organizar"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Outros"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Pendente"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Pessoas"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Registros"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Redefinir 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Redefinir para"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Redefinir para padrão"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Resultado"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultados"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Adaugă la lista neagră"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Adaugă la favorite"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Adaugă la favorite"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Închide bannerul"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Închide panoul lateral"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Configurat"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmă"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Conținut"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Context"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Creează profil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Creează profil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Creează înregistrare similară"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "șterge"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Editează Cont"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Expiră în {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Rată de eșec"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Accesați portalul de facturare"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Mergi la schiță"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Mergi la Persoane"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Ascundeți grupurile ascunse"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Mai mult"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Nu este necesară nicio înregistrare pentru a declanșa acest flux de lucru"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "obiect"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Deschide Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Deschide panoul lateral"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Organizare"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Altul"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "În așteptare"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Persoane"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Roz"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Înregistrări"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Resetează 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Resetează la"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Resetați la implicit"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Rezultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Rezultate"
|
||||
|
||||
Binary file not shown.
@@ -1134,12 +1134,6 @@ msgstr "Додајте на црну листу"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Додајте у омиљене"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Додајте у омиљене"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Затвори банер"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Затвори бочни панел"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Конфигурисано"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Потврди"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Садржај"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Контекст"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Креирај профил"
|
||||
msgid "Create Profile"
|
||||
msgstr "Креирај профил"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Креирај повезани запис"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "обриши"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Измени налог"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Истиче за {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Извоз"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Стопа неуспеха"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Отворите портал за наплату"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Иди на Нацрт"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Иди на људе"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Сакриј скривене групе"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Још"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Запис није потребан за покретање овог рада"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "објекат"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Отвори Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Отвори бочни панел"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Организујте"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Остало"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "На чекању"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Личности"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Розе"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Рекорди"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Ресетујте 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Ресетујте на"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Врати на подразумевано"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Резултат"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Резултати"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Lägg till i blocklistan"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Lägg till i favoriter"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Lägg till i favoriter"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Stäng banner"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Stäng sidopanelen"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Konfigurerad"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Bekräfta"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Innehåll"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Sammanhang"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Skapa profil"
|
||||
msgid "Create Profile"
|
||||
msgstr "Skapa profil"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Skapa relaterad post"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "ta bort"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Redigera Konto"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Förfaller om {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Exportera"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Felfrekvens"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Gå till faktureringsportalen"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Gå till utkast"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Gå till Personer"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Dölj dolda grupper"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9241,7 +9220,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Mer"
|
||||
|
||||
@@ -10080,8 +10059,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Ingen post krävs för att utlösa detta arbetsflöde"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10374,7 +10353,6 @@ msgstr "objekt"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10632,7 +10610,7 @@ msgstr "Öppna Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Öppna sidopanelen"
|
||||
|
||||
@@ -10725,8 +10703,8 @@ msgstr "Organisera"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Annat"
|
||||
|
||||
@@ -10942,11 +10920,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Väntar"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Personer"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11084,8 +11057,8 @@ msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11658,8 +11631,8 @@ msgid "Records"
|
||||
msgstr "Poster"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11969,7 +11942,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Återställ 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11984,7 +11957,7 @@ msgstr "Återställ till"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Återställ till standard"
|
||||
|
||||
@@ -12061,7 +12034,7 @@ msgid "Result"
|
||||
msgstr "Resultat"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Resultat"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Kara Listeye Ekle"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Sık Kullanılanlara Ekle"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Sık Kullanılanlara Ekle"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Afişi kapat"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Yan paneli kapat"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Yapılandırıldı"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Onayla"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "İçerik"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Bağlam"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Profil oluştur"
|
||||
msgid "Create Profile"
|
||||
msgstr "Profil Oluştur"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "İlişkili Kaydı Oluştur"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "sil"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Hesap Düzenle"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "{dateDiff} içinde sona eriyor"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Dışa Aktar"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Başarısızlık Oranı"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Faturalandırma portalına git"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Taslağa Git"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "İnsanlara Git"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Gizli grupları gizle"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Daha Fazla"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Bu iş akışını tetiklemek için bir kayda gerek yok"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "nesne"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Outlook'u Aç"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Yan paneli aç"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Düzenle"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Diğer"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Beklemede"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "İnsanlar"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Pembe"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Kayıtlar"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "2FA Sıfırla"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Sıfırla"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Varsayılana Sıfırla"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Sonuç"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Sonuçlar"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Додати до чорного списку"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Додати до обраних"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Додати до обраних"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Закрити банер"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Закрити бічну панель"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Налаштовано"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Підтвердити"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Вміст"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Контекст"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Створити профіль"
|
||||
msgid "Create Profile"
|
||||
msgstr "Створити профіль"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Створити пов'язаний запис"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "видалити"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Редагувати обліковий запис"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Закінчується через {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "Експорт"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Частота збоїв"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Перейти до порталу виставлення рахункі
|
||||
msgid "Go to Draft"
|
||||
msgstr "Перейти до чернеток"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Перейти до людей"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Приховати приховані групи"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Більше"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Для запуску цього робочого процесу не потрібен запис"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "об'єкт"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Відкрити Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Відкрити бічну панель"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Упорядкувати"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Інший"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "В очікуванні"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Особи"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Рожевий"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Записи"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Скинути 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Скинути до"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Скинути до значення за замовчуванням"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Результат"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Результати"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "Thêm vào danh sách chặn"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "Thêm vào mục yêu thích"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "Thêm vào mục yêu thích"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "Đóng biểu ngữ"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "Đóng ngăn bên"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "Đã cấu hình"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "Xác nhận"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "Nội dung"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "Ngữ cảnh"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "Tạo hồ sơ"
|
||||
msgid "Create Profile"
|
||||
msgstr "Tạo hồ sơ"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "Tạo bản ghi liên quan"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "xóa"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "Chỉnh Sửa Tài Khoản"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "Hết hạn sau {dateDiff}"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "\"Xuất\""
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "Tỉ lệ thất bại"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "Đi tới cổng thanh toán"
|
||||
msgid "Go to Draft"
|
||||
msgstr "Đi tới Bản nháp"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "Đi tới Nhân sự"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "Ẩn nhóm ẩn"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "Thêm nữa"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "Không cần bản ghi nào để kích hoạt quy trình công việc này"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "đối tượng"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "Mở Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "Mở ngăn bên"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "Sắp xếp"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "Khác"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "Đang chờ xử lý"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "Người"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "Hồng"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "Hồ Sơ"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "Đặt lại 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "Đặt lại thành"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "Đặt lại về mặc định"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "Kết quả"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "Kết quả"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "添加到拦截列表"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "添加到收藏夹"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "添加到收藏夹"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "关闭横幅"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "关闭侧边栏"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "已配置"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "确认"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "内容"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "上下文"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "创建个人资料"
|
||||
msgid "Create Profile"
|
||||
msgstr "创建个人资料"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "创建相关记录"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "删除"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "编辑账户"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "在 {dateDiff} 之内过期"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "导出"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "失败率"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "前往账单门户"
|
||||
msgid "Go to Draft"
|
||||
msgstr "前往草稿"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "前往人员"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "隐藏隐藏组"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "更多"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "不需要记录即可触发此工作流"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "对象"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "打开Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "打开侧边栏"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "整理"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "其他"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "待处理"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "人员"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "粉色"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "记录"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "重置 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "重置为"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "重置为默认"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "结果"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "结果"
|
||||
|
||||
@@ -1134,12 +1134,6 @@ msgstr "添加到阻止列表"
|
||||
msgid "Add to Favorite"
|
||||
msgstr "添加到收藏夾"
|
||||
|
||||
#. js-lingui-id: pBsoKL
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Add to favorites"
|
||||
msgstr "添加到收藏夾"
|
||||
|
||||
#. js-lingui-id: q9e2Bs
|
||||
#: src/modules/views/view-picker/components/ViewPickerListContent.tsx
|
||||
msgid "Add view"
|
||||
@@ -3154,7 +3148,7 @@ msgstr "關閉橫幅"
|
||||
|
||||
#. js-lingui-id: saip/v
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Close side panel"
|
||||
msgstr "關閉側邊面板"
|
||||
|
||||
@@ -3431,7 +3425,6 @@ msgstr "已設定"
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/settings/billing/components/SettingsBillingSubscriptionInfo.tsx
|
||||
#: src/modules/command-menu-item/display/components/CommandModal.tsx
|
||||
msgid "Confirm"
|
||||
msgstr "確認"
|
||||
|
||||
@@ -3536,7 +3529,7 @@ msgstr "內容"
|
||||
#. js-lingui-id: M73whl
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/settings/ai/components/SettingsAiModelHoverCard.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/ai/components/RoutingDebugDisplay.tsx
|
||||
msgid "Context"
|
||||
msgstr "上下文"
|
||||
@@ -3920,11 +3913,6 @@ msgstr "創建個人檔案"
|
||||
msgid "Create Profile"
|
||||
msgstr "建立檔案"
|
||||
|
||||
#. js-lingui-id: GPuEIc
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
msgid "Create Related Record"
|
||||
msgstr "創建相關記錄"
|
||||
|
||||
#. js-lingui-id: RoyYUE
|
||||
#: src/pages/settings/ai/components/SettingsAgentRoleTab.tsx
|
||||
#: src/modules/settings/roles/components/SettingsRolesList.tsx
|
||||
@@ -4638,8 +4626,6 @@ msgstr "刪除"
|
||||
#: src/modules/object-record/record-field-list/record-detail-section/relation/components/RecordDetailRelationRecordsListItem.tsx
|
||||
#: src/modules/object-record/record-field/ui/meta-types/input/components/MultiItemFieldMenuItem.tsx
|
||||
#: src/modules/navigation-menu-item/display/folder/components/NavigationMenuItemFolderNavigationDrawerItemDropdown.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/blocknote-editor/components/CustomSideMenu.tsx
|
||||
#: src/modules/activities/files/components/AttachmentDropdown.tsx
|
||||
msgid "Delete"
|
||||
@@ -5247,8 +5233,8 @@ msgstr "編輯帳戶"
|
||||
|
||||
#. js-lingui-id: t1EOLt
|
||||
#: src/modules/layout-customization/hooks/useEnterLayoutCustomizationMode.ts
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditButton.tsx
|
||||
msgid "Edit actions"
|
||||
msgstr ""
|
||||
|
||||
@@ -6326,8 +6312,6 @@ msgstr "在 {dateDiff} 過期"
|
||||
|
||||
#. js-lingui-id: GS+Mus
|
||||
#: src/modules/object-record/record-index/export/hooks/useRecordIndexExportRecords.ts
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Export"
|
||||
msgstr "導出"
|
||||
|
||||
@@ -6622,7 +6606,7 @@ msgid "Failure Rate"
|
||||
msgstr "失敗率"
|
||||
|
||||
#. js-lingui-id: 8wngZM
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Fallback"
|
||||
msgstr ""
|
||||
|
||||
@@ -7159,11 +7143,6 @@ msgstr "前往帳單入口網站"
|
||||
msgid "Go to Draft"
|
||||
msgstr "前往草稿"
|
||||
|
||||
#. js-lingui-id: MrE/Qb
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "Go to People"
|
||||
msgstr "前往人員"
|
||||
|
||||
#. js-lingui-id: mT57+Q
|
||||
#: src/modules/views/view-picker/components/ViewPickerEditButton.tsx
|
||||
#: src/modules/views/view-picker/components/ViewPickerCreateButton.tsx
|
||||
@@ -7389,7 +7368,7 @@ msgid "Hide hidden groups"
|
||||
msgstr "隱藏隱藏的群組"
|
||||
|
||||
#. js-lingui-id: 2ouyMV
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Hide label"
|
||||
msgstr ""
|
||||
|
||||
@@ -9239,7 +9218,7 @@ msgstr ""
|
||||
#. js-lingui-id: 2FYpfJ
|
||||
#: src/pages/settings/ai/SettingsAI.tsx
|
||||
#: src/modules/ui/layout/tab-list/components/TabMoreButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "More"
|
||||
msgstr "更多"
|
||||
|
||||
@@ -10078,8 +10057,8 @@ msgid "No record is required to trigger this workflow"
|
||||
msgstr "不需要記錄即可觸發此工作流程"
|
||||
|
||||
#. js-lingui-id: aqUuQE
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "No record selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -10372,7 +10351,6 @@ msgstr "對象"
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionUpdateRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionDeleteRecord.tsx
|
||||
#: src/modules/workflow/workflow-steps/workflow-actions/components/WorkflowEditActionCreateRecord.tsx
|
||||
#: src/modules/side-panel/pages/root/components/SidePanelRootPage.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectViewRecordInfo.tsx
|
||||
#: src/modules/side-panel/components/SidePanelObjectFilterDropdownContent.tsx
|
||||
#: src/modules/settings/developers/components/WebhookEntitySelect.tsx
|
||||
@@ -10630,7 +10608,7 @@ msgstr "打開Outlook"
|
||||
|
||||
#. js-lingui-id: bY2Xkv
|
||||
#: src/modules/ui/layout/page-header/components/PageHeaderToggleSidePanelButton.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/CommandMenuItemMoreActionsButton.tsx
|
||||
#: src/modules/side-panel/components/SidePanelToggleButton.tsx
|
||||
msgid "Open side panel"
|
||||
msgstr "開啟側邊面板"
|
||||
|
||||
@@ -10723,8 +10701,8 @@ msgstr "整理"
|
||||
#: src/modules/page-layout/widgets/fields/hooks/useFieldsWidgetGroups.ts
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemMainMenu.tsx
|
||||
#: src/modules/navigation/components/NavigationDrawerOtherSection.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Other"
|
||||
msgstr "其他"
|
||||
|
||||
@@ -10940,11 +10918,6 @@ msgstr "PDF"
|
||||
msgid "Pending"
|
||||
msgstr "待處理"
|
||||
|
||||
#. js-lingui-id: 1wdjme
|
||||
#: src/modules/command-menu-item/mock/command-menu-items.mock.tsx
|
||||
msgid "People"
|
||||
msgstr "人員"
|
||||
|
||||
#. js-lingui-id: PxBA+g
|
||||
#: src/modules/settings/accounts/components/SettingsAccountsMessageAutoCreationCard.tsx
|
||||
msgid "People I’ve sent emails to and received emails from."
|
||||
@@ -11082,8 +11055,8 @@ msgid "Pink"
|
||||
msgstr "粉紅色"
|
||||
|
||||
#. js-lingui-id: kNiQp6
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/server-items/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/display/components/SidePanelCommandMenuItemDisplayPage.tsx
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
@@ -11656,8 +11629,8 @@ msgid "Records"
|
||||
msgstr "紀錄"
|
||||
|
||||
#. js-lingui-id: J+Qyf2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemEditRecordSelectionDropdown.tsx
|
||||
msgid "Records selected"
|
||||
msgstr ""
|
||||
|
||||
@@ -11967,7 +11940,7 @@ msgid "Reset 2FA"
|
||||
msgstr "重置 2FA"
|
||||
|
||||
#. js-lingui-id: YdI8A2
|
||||
#: src/modules/command-menu-item/server-items/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
#: src/modules/command-menu-item/edit/components/CommandMenuItemOptionsDropdown.tsx
|
||||
msgid "Reset label to default"
|
||||
msgstr ""
|
||||
|
||||
@@ -11982,7 +11955,7 @@ msgstr "重置為"
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/side-panel/pages/page-layout/components/SidePanelPageLayoutTabSettingsContent.tsx
|
||||
#: src/modules/settings/data-model/fields/forms/address/components/SettingsDataModelFieldAddressForm.tsx
|
||||
#: src/modules/command-menu-item/server-items/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
#: src/modules/command-menu-item/edit/components/SidePanelCommandMenuItemEditPage.tsx
|
||||
msgid "Reset to default"
|
||||
msgstr "重置為默認"
|
||||
|
||||
@@ -12059,7 +12032,7 @@ msgid "Result"
|
||||
msgstr "結果"
|
||||
|
||||
#. js-lingui-id: kx0s+n
|
||||
#: src/modules/side-panel/pages/search/hooks/useSidePanelSearchRecords.tsx
|
||||
#: src/modules/side-panel/pages/search/components/SidePanelSearchRecordsPage.tsx
|
||||
#: src/modules/navigation-menu-item/edit/side-panel/components/SidePanelNewSidebarItemRecordSubPage.tsx
|
||||
msgid "Results"
|
||||
msgstr "結果"
|
||||
|
||||
+2
-5
@@ -1,11 +1,11 @@
|
||||
import { type TimelineActivity } from '@/activities/timeline-activities/types/TimelineActivity';
|
||||
import { ObjectMetadataIcon } from '@/object-metadata/components/ObjectMetadataIcon';
|
||||
import { type EnrichedObjectMetadataItem } from '@/object-metadata/types/EnrichedObjectMetadataItem';
|
||||
import {
|
||||
IconCirclePlus,
|
||||
IconEditCircle,
|
||||
IconRestore,
|
||||
IconTrash,
|
||||
useIcons,
|
||||
} from 'twenty-ui/display';
|
||||
|
||||
export const EventIconDynamicComponent = ({
|
||||
@@ -15,7 +15,6 @@ export const EventIconDynamicComponent = ({
|
||||
event: TimelineActivity;
|
||||
linkedObjectMetadataItem: EnrichedObjectMetadataItem | null;
|
||||
}) => {
|
||||
const { getIcon } = useIcons();
|
||||
const [, eventAction] = event.name.split('.');
|
||||
|
||||
if (eventAction === 'created') {
|
||||
@@ -31,7 +30,5 @@ export const EventIconDynamicComponent = ({
|
||||
return <IconRestore />;
|
||||
}
|
||||
|
||||
const IconComponent = getIcon(linkedObjectMetadataItem?.icon);
|
||||
|
||||
return <IconComponent />;
|
||||
return <ObjectMetadataIcon objectMetadataItem={linkedObjectMetadataItem} />;
|
||||
};
|
||||
|
||||
-1
@@ -1,7 +1,6 @@
|
||||
import { CoreObjectNameSingular } from 'twenty-shared/types';
|
||||
|
||||
export const CORE_OBJECT_NAMES_TO_DELETE_ON_TRIGGER_RELATION_DETACH = [
|
||||
CoreObjectNameSingular.Favorite,
|
||||
CoreObjectNameSingular.NoteTarget,
|
||||
CoreObjectNameSingular.TaskTarget,
|
||||
CoreObjectNameSingular.Comment,
|
||||
|
||||
+3
-3
@@ -1,8 +1,8 @@
|
||||
import { PinnedCommandMenuItemButtons } from '@/command-menu-item/server-items/display/components/PinnedCommandMenuItemButtons';
|
||||
import { PinnedCommandMenuItemButtons } from '@/command-menu-item/display/components/PinnedCommandMenuItemButtons';
|
||||
import { RecordIndexCommandMenuDropdown } from '@/command-menu-item/components/RecordIndexCommandMenuDropdown';
|
||||
import { CommandMenuContextProvider } from '@/command-menu-item/contexts/CommandMenuContextProvider';
|
||||
import { CommandMenuItemEditButton } from '@/command-menu-item/server-items/edit/components/CommandMenuItemEditButton';
|
||||
import { PinnedCommandMenuItemButtonsEditMode } from '@/command-menu-item/server-items/edit/components/PinnedCommandMenuItemButtonsEditMode';
|
||||
import { CommandMenuItemEditButton } from '@/command-menu-item/edit/components/CommandMenuItemEditButton';
|
||||
import { PinnedCommandMenuItemButtonsEditMode } from '@/command-menu-item/edit/components/PinnedCommandMenuItemButtonsEditMode';
|
||||
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
|
||||
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
|
||||
import { isLayoutCustomizationModeEnabledState } from '@/layout-customization/states/isLayoutCustomizationModeEnabledState';
|
||||
|
||||
+10
-11
@@ -1,11 +1,9 @@
|
||||
import { CommandMenuItemComponent } from '@/command-menu-item/display/components/CommandMenuItemComponent';
|
||||
import { CommandMenuItemScope } from '@/command-menu-item/types/CommandMenuItemScope';
|
||||
import { CommandMenuItemType } from '@/command-menu-item/types/CommandMenuItemType';
|
||||
import { COMMAND_MENU_DROPDOWN_CLICK_OUTSIDE_ID } from '@/command-menu-item/constants/CommandMenuDropdownClickOutsideId';
|
||||
import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
import { CommandMenuItemRenderer } from '@/command-menu-item/display/components/CommandMenuItemRenderer';
|
||||
import { recordIndexCommandMenuDropdownPositionComponentState } from '@/command-menu-item/states/recordIndexCommandMenuDropdownPositionComponentState';
|
||||
import { getCommandMenuDropdownIdFromCommandMenuId } from '@/command-menu-item/utils/getCommandMenuDropdownIdFromCommandMenuId';
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
import { useSidePanelMenu } from '@/side-panel/hooks/useSidePanelMenu';
|
||||
import { Dropdown } from '@/ui/layout/dropdown/components/Dropdown';
|
||||
import { DropdownContent } from '@/ui/layout/dropdown/components/DropdownContent';
|
||||
@@ -21,6 +19,7 @@ import { useLingui } from '@lingui/react/macro';
|
||||
import { useContext } from 'react';
|
||||
import { IconLayoutSidebarRightExpand } from 'twenty-ui/display';
|
||||
import { MenuItem } from 'twenty-ui/navigation';
|
||||
import { CommandMenuItemAvailabilityType } from '~/generated-metadata/graphql';
|
||||
|
||||
const StyledDropdownMenuContainer = styled.div`
|
||||
align-items: center;
|
||||
@@ -36,10 +35,10 @@ export const RecordIndexCommandMenuDropdown = () => {
|
||||
const { t } = useLingui();
|
||||
const { commandMenuItems } = useContext(CommandMenuContext);
|
||||
|
||||
const recordIndexActions = commandMenuItems.filter(
|
||||
(action) =>
|
||||
action.type === CommandMenuItemType.Standard &&
|
||||
action.scope === CommandMenuItemScope.RecordSelection,
|
||||
const recordIndexCommandMenuItems = commandMenuItems.filter(
|
||||
(item) =>
|
||||
item.availabilityType ===
|
||||
CommandMenuItemAvailabilityType.RECORD_SELECTION,
|
||||
);
|
||||
|
||||
const commandMenuId = useAvailableComponentInstanceIdOrThrow(
|
||||
@@ -57,7 +56,7 @@ export const RecordIndexCommandMenuDropdown = () => {
|
||||
const { openSidePanelMenu } = useSidePanelMenu();
|
||||
|
||||
const selectedItemIdArray = [
|
||||
...recordIndexActions.map((action) => action.key),
|
||||
...recordIndexCommandMenuItems.map((item) => item.id),
|
||||
'more-actions',
|
||||
];
|
||||
|
||||
@@ -87,8 +86,8 @@ export const RecordIndexCommandMenuDropdown = () => {
|
||||
selectableItemIdArray={selectedItemIdArray}
|
||||
selectableListInstanceId={dropdownId}
|
||||
>
|
||||
{recordIndexActions.map((action) => (
|
||||
<CommandMenuItemComponent action={action} key={action.key} />
|
||||
{recordIndexCommandMenuItems.map((item) => (
|
||||
<CommandMenuItemRenderer item={item} key={item.id} />
|
||||
))}
|
||||
<SelectableListItem
|
||||
itemId="more-actions"
|
||||
|
||||
+34
-23
@@ -1,16 +1,16 @@
|
||||
import { CommandMenuItemComponent } from '@/command-menu-item/display/components/CommandMenuItemComponent';
|
||||
import { CommandMenuItemScope } from '@/command-menu-item/types/CommandMenuItemScope';
|
||||
import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
import { CommandMenuItemRenderer } from '@/command-menu-item/display/components/CommandMenuItemRenderer';
|
||||
import { getSidePanelCommandMenuDropdownIdFromCommandMenuId } from '@/command-menu-item/utils/getSidePanelCommandMenuDropdownIdFromCommandMenuId';
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
import { OptionsDropdownMenu } from '@/ui/layout/dropdown/components/OptionsDropdownMenu';
|
||||
import { useCloseDropdown } from '@/ui/layout/dropdown/hooks/useCloseDropdown';
|
||||
import { sidePanelWidgetFooterActionsState } from '@/ui/layout/side-panel/states/sidePanelWidgetFooterActionsState';
|
||||
import { sidePanelWidgetFooterCommandMenuItemsState } from '@/ui/layout/side-panel/states/sidePanelWidgetFooterCommandMenuItemsState';
|
||||
import { useAvailableComponentInstanceIdOrThrow } from '@/ui/utilities/state/component-state/hooks/useAvailableComponentInstanceIdOrThrow';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useContext } from 'react';
|
||||
import { useContext, useMemo } from 'react';
|
||||
import { HorizontalSeparator } from 'twenty-ui/display';
|
||||
import { MenuItem } from 'twenty-ui/navigation';
|
||||
import { CommandMenuItemAvailabilityType } from '~/generated-metadata/graphql';
|
||||
|
||||
export const RecordPageSidePanelCommandMenuDropdown = () => {
|
||||
const { commandMenuItems } = useContext(CommandMenuContext);
|
||||
@@ -24,21 +24,30 @@ export const RecordPageSidePanelCommandMenuDropdown = () => {
|
||||
|
||||
const { closeDropdown } = useCloseDropdown();
|
||||
|
||||
const sidePanelWidgetFooterActions = useAtomStateValue(
|
||||
sidePanelWidgetFooterActionsState,
|
||||
const sidePanelWidgetFooterCommandMenuItems = useAtomStateValue(
|
||||
sidePanelWidgetFooterCommandMenuItemsState,
|
||||
);
|
||||
|
||||
const dropdownWidgetActions = sidePanelWidgetFooterActions.filter(
|
||||
(action) => action.isPinned === false,
|
||||
);
|
||||
const dropdownWidgetCommandMenuItems =
|
||||
sidePanelWidgetFooterCommandMenuItems.filter(
|
||||
(commandMenuItem) => commandMenuItem.isPinned === false,
|
||||
);
|
||||
|
||||
const recordSelectionActions = commandMenuItems.filter(
|
||||
(action) => action.scope === CommandMenuItemScope.RecordSelection,
|
||||
const recordSelectionCommandMenuItems = useMemo(
|
||||
() =>
|
||||
commandMenuItems.filter(
|
||||
(item) =>
|
||||
item.availabilityType ===
|
||||
CommandMenuItemAvailabilityType.RECORD_SELECTION,
|
||||
),
|
||||
[commandMenuItems],
|
||||
);
|
||||
|
||||
const selectableItemIdArray = [
|
||||
...dropdownWidgetActions.map((action) => action.key),
|
||||
...recordSelectionActions.map((action) => action.key),
|
||||
...dropdownWidgetCommandMenuItems.map(
|
||||
(commandMenuItem) => commandMenuItem.id,
|
||||
),
|
||||
...recordSelectionCommandMenuItems.map((item) => item.id),
|
||||
];
|
||||
|
||||
return (
|
||||
@@ -47,21 +56,23 @@ export const RecordPageSidePanelCommandMenuDropdown = () => {
|
||||
selectableListId={commandMenuId}
|
||||
selectableItemIdArray={selectableItemIdArray}
|
||||
>
|
||||
{dropdownWidgetActions.map((action) => (
|
||||
{dropdownWidgetCommandMenuItems.map((commandMenuItem) => (
|
||||
<MenuItem
|
||||
key={action.key}
|
||||
text={action.label}
|
||||
LeftIcon={action.Icon}
|
||||
key={commandMenuItem.id}
|
||||
text={commandMenuItem.label}
|
||||
LeftIcon={commandMenuItem.Icon}
|
||||
onClick={() => {
|
||||
closeDropdown(dropdownId);
|
||||
action.onClick();
|
||||
commandMenuItem.onClick();
|
||||
}}
|
||||
/>
|
||||
))}
|
||||
{dropdownWidgetActions.length > 0 &&
|
||||
recordSelectionActions.length > 0 && <HorizontalSeparator noMargin />}
|
||||
{recordSelectionActions.map((action) => (
|
||||
<CommandMenuItemComponent action={action} key={action.key} />
|
||||
{dropdownWidgetCommandMenuItems.length > 0 &&
|
||||
recordSelectionCommandMenuItems.length > 0 && (
|
||||
<HorizontalSeparator noMargin />
|
||||
)}
|
||||
{recordSelectionCommandMenuItems.map((item) => (
|
||||
<CommandMenuItemRenderer item={item} key={item.id} />
|
||||
))}
|
||||
</OptionsDropdownMenu>
|
||||
);
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
import { CommandMenuContextProvider } from '@/command-menu-item/contexts/CommandMenuContextProvider';
|
||||
import { PinnedCommandMenuItemButtons } from '@/command-menu-item/server-items/display/components/PinnedCommandMenuItemButtons';
|
||||
import { CommandMenuItemEditButton } from '@/command-menu-item/server-items/edit/components/CommandMenuItemEditButton';
|
||||
import { PinnedCommandMenuItemButtons } from '@/command-menu-item/display/components/PinnedCommandMenuItemButtons';
|
||||
import { CommandMenuItemEditButton } from '@/command-menu-item/edit/components/CommandMenuItemEditButton';
|
||||
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
|
||||
import { contextStoreCurrentObjectMetadataItemIdComponentState } from '@/context-store/states/contextStoreCurrentObjectMetadataItemIdComponentState';
|
||||
import { contextStoreTargetedRecordsRuleComponentState } from '@/context-store/states/contextStoreTargetedRecordsRuleComponentState';
|
||||
|
||||
+13
-25
@@ -1,22 +1,20 @@
|
||||
import { type Meta, type StoryObj } from '@storybook/react-vite';
|
||||
import { Provider as JotaiProvider } from 'jotai';
|
||||
import * as test from 'storybook/test';
|
||||
import { expect, userEvent, waitFor, within } from 'storybook/test';
|
||||
import { expect, within } from 'storybook/test';
|
||||
|
||||
import { RecordIndexCommandMenuDropdown } from '@/command-menu-item/components/RecordIndexCommandMenuDropdown';
|
||||
import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { createMockCommandMenuItems } from '@/command-menu-item/mock/command-menu-items.mock';
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
import { recordIndexCommandMenuDropdownPositionComponentState } from '@/command-menu-item/states/recordIndexCommandMenuDropdownPositionComponentState';
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
|
||||
import { EMPTY_COMMAND_MENU_CONTEXT_API } from '@/command-menu-item/constants/EmptyCommandMenuContextApi';
|
||||
import { isDropdownOpenComponentState } from '@/ui/layout/dropdown/states/isDropdownOpenComponentState';
|
||||
import { jotaiStore } from '@/ui/utilities/state/jotai/jotaiStore';
|
||||
import { RouterDecorator } from 'twenty-ui/testing';
|
||||
import { ContextStoreDecorator } from '~/testing/decorators/ContextStoreDecorator';
|
||||
|
||||
const deleteMock = test.fn();
|
||||
const addToFavoritesMock = test.fn();
|
||||
const exportMock = test.fn();
|
||||
import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator';
|
||||
import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator';
|
||||
|
||||
const meta: Meta<typeof RecordIndexCommandMenuDropdown> = {
|
||||
title: 'Modules/CommandMenu/RecordIndexCommandMenuDropdown',
|
||||
@@ -43,14 +41,10 @@ const meta: Meta<typeof RecordIndexCommandMenuDropdown> = {
|
||||
>
|
||||
<CommandMenuContext.Provider
|
||||
value={{
|
||||
isInSidePanel: true,
|
||||
displayType: 'dropdownItem',
|
||||
containerType: 'index-page-dropdown',
|
||||
commandMenuItems: createMockCommandMenuItems({
|
||||
deleteMock,
|
||||
addToFavoritesMock,
|
||||
exportMock,
|
||||
}),
|
||||
commandMenuItems: createMockCommandMenuItems(),
|
||||
commandMenuContextApi: EMPTY_COMMAND_MENU_CONTEXT_API,
|
||||
}}
|
||||
>
|
||||
<Story />
|
||||
@@ -60,6 +54,8 @@ const meta: Meta<typeof RecordIndexCommandMenuDropdown> = {
|
||||
);
|
||||
},
|
||||
ContextStoreDecorator,
|
||||
ObjectMetadataItemsDecorator,
|
||||
SnackBarDecorator,
|
||||
RouterDecorator,
|
||||
],
|
||||
};
|
||||
@@ -82,21 +78,13 @@ export const WithInteractions: Story = {
|
||||
const canvas = within(canvasElement.ownerDocument.body);
|
||||
|
||||
const deleteButton = await canvas.findByText('Delete');
|
||||
await userEvent.click(deleteButton);
|
||||
|
||||
const addToFavoritesButton = await canvas.findByText('Add to favorites');
|
||||
await userEvent.click(addToFavoritesButton);
|
||||
|
||||
const exportButton = await canvas.findByText('Export');
|
||||
await userEvent.click(exportButton);
|
||||
|
||||
const moreActionsButton = await canvas.findByText('More actions');
|
||||
|
||||
await waitFor(() => {
|
||||
expect(deleteMock).toHaveBeenCalled();
|
||||
expect(addToFavoritesMock).toHaveBeenCalled();
|
||||
expect(exportMock).toHaveBeenCalled();
|
||||
expect(moreActionsButton).toBeInTheDocument();
|
||||
});
|
||||
expect(deleteButton).toBeInTheDocument();
|
||||
expect(addToFavoritesButton).toBeInTheDocument();
|
||||
expect(exportButton).toBeInTheDocument();
|
||||
expect(moreActionsButton).toBeInTheDocument();
|
||||
},
|
||||
};
|
||||
|
||||
+8
-18
@@ -1,7 +1,6 @@
|
||||
import { type Meta, type StoryObj } from '@storybook/react-vite';
|
||||
import { Provider as JotaiProvider } from 'jotai';
|
||||
import * as test from 'storybook/test';
|
||||
import { expect, userEvent, waitFor, within } from 'storybook/test';
|
||||
import { userEvent, within } from 'storybook/test';
|
||||
|
||||
import { RecordPageSidePanelCommandMenuDropdown } from '@/command-menu-item/components/RecordPageSidePanelCommandMenuDropdown';
|
||||
import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
@@ -9,15 +8,13 @@ import { createMockCommandMenuItems } from '@/command-menu-item/mock/command-men
|
||||
import { CommandMenuComponentInstanceContext } from '@/command-menu/states/contexts/CommandMenuComponentInstanceContext';
|
||||
import { MAIN_CONTEXT_STORE_INSTANCE_ID } from '@/context-store/constants/MainContextStoreInstanceId';
|
||||
import { ContextStoreComponentInstanceContext } from '@/context-store/states/contexts/ContextStoreComponentInstanceContext';
|
||||
import { ComponentDecorator, RouterDecorator } from 'twenty-ui/testing';
|
||||
import { jotaiStore } from '@/ui/utilities/state/jotai/jotaiStore';
|
||||
import { EMPTY_COMMAND_MENU_CONTEXT_API } from '@/command-menu-item/constants/EmptyCommandMenuContextApi';
|
||||
import { ComponentDecorator, RouterDecorator } from 'twenty-ui/testing';
|
||||
import { ContextStoreDecorator } from '~/testing/decorators/ContextStoreDecorator';
|
||||
import { ObjectMetadataItemsDecorator } from '~/testing/decorators/ObjectMetadataItemsDecorator';
|
||||
import { SnackBarDecorator } from '~/testing/decorators/SnackBarDecorator';
|
||||
import { JestContextStoreSetter } from '~/testing/jest/JestContextStoreSetter';
|
||||
const deleteMock = test.fn();
|
||||
const addToFavoritesMock = test.fn();
|
||||
const exportMock = test.fn();
|
||||
|
||||
const meta: Meta<typeof RecordPageSidePanelCommandMenuDropdown> = {
|
||||
title: 'Modules/CommandMenu/RecordPageSidePanelCommandMenuDropdown',
|
||||
@@ -40,14 +37,13 @@ const meta: Meta<typeof RecordPageSidePanelCommandMenuDropdown> = {
|
||||
>
|
||||
<CommandMenuContext.Provider
|
||||
value={{
|
||||
isInSidePanel: true,
|
||||
displayType: 'dropdownItem',
|
||||
containerType: 'command-menu-show-page-dropdown',
|
||||
commandMenuItems: createMockCommandMenuItems({
|
||||
deleteMock,
|
||||
addToFavoritesMock,
|
||||
exportMock,
|
||||
}),
|
||||
commandMenuItems: createMockCommandMenuItems(),
|
||||
commandMenuContextApi: {
|
||||
...EMPTY_COMMAND_MENU_CONTEXT_API,
|
||||
isInSidePanel: true,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<Story />
|
||||
@@ -102,11 +98,5 @@ export const WithButtonClicks: Story = {
|
||||
|
||||
const exportButton = await canvas.findByText('Export');
|
||||
await userEvent.click(exportButton);
|
||||
|
||||
await waitFor(() => {
|
||||
expect(deleteMock).toHaveBeenCalled();
|
||||
expect(addToFavoritesMock).toHaveBeenCalled();
|
||||
expect(exportMock).toHaveBeenCalled();
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
import {
|
||||
CommandMenuContextApiPageType,
|
||||
type CommandMenuContextApi,
|
||||
} from 'twenty-shared/types';
|
||||
|
||||
export const EMPTY_COMMAND_MENU_CONTEXT_API: CommandMenuContextApi = {
|
||||
pageType: CommandMenuContextApiPageType.INDEX_PAGE,
|
||||
isInSidePanel: false,
|
||||
isPageInEditMode: false,
|
||||
favoriteRecordIds: [],
|
||||
isSelectAll: false,
|
||||
hasAnySoftDeleteFilterOnView: false,
|
||||
numberOfSelectedRecords: 0,
|
||||
objectPermissions: {
|
||||
canReadObjectRecords: false,
|
||||
canUpdateObjectRecords: false,
|
||||
canSoftDeleteObjectRecords: false,
|
||||
canDestroyObjectRecords: false,
|
||||
restrictedFields: {},
|
||||
objectMetadataId: '',
|
||||
rowLevelPermissionPredicates: [],
|
||||
rowLevelPermissionPredicateGroups: [],
|
||||
},
|
||||
selectedRecords: [],
|
||||
featureFlags: {},
|
||||
targetObjectReadPermissions: {},
|
||||
targetObjectWritePermissions: {},
|
||||
objectMetadataItem: {},
|
||||
objectMetadataLabel: '',
|
||||
};
|
||||
@@ -1,6 +0,0 @@
|
||||
import { type CommandMenuItemConfig } from '@/command-menu-item/types/CommandMenuItemConfig';
|
||||
import { createContext } from 'react';
|
||||
|
||||
export const CommandConfigContext = createContext<CommandMenuItemConfig | null>(
|
||||
null,
|
||||
);
|
||||
@@ -1,17 +1,19 @@
|
||||
import { type CommandMenuItemConfig } from '@/command-menu-item/types/CommandMenuItemConfig';
|
||||
import { EMPTY_COMMAND_MENU_CONTEXT_API } from '@/command-menu-item/constants/EmptyCommandMenuContextApi';
|
||||
import { type CommandMenuItemContainerType } from '@/command-menu-item/types/CommandMenuItemContainerType';
|
||||
import { createContext } from 'react';
|
||||
import { type CommandMenuContextApi } from 'twenty-shared/types';
|
||||
import { type CommandMenuItemFieldsFragment } from '~/generated-metadata/graphql';
|
||||
|
||||
export type CommandMenuContextType = {
|
||||
isInSidePanel: boolean;
|
||||
displayType: 'button' | 'listItem' | 'dropdownItem';
|
||||
containerType: CommandMenuItemContainerType;
|
||||
commandMenuItems: CommandMenuItemConfig[];
|
||||
commandMenuItems: CommandMenuItemFieldsFragment[];
|
||||
commandMenuContextApi: CommandMenuContextApi;
|
||||
};
|
||||
|
||||
export const CommandMenuContext = createContext<CommandMenuContextType>({
|
||||
isInSidePanel: false,
|
||||
containerType: 'command-menu-list',
|
||||
displayType: 'button',
|
||||
commandMenuItems: [],
|
||||
commandMenuContextApi: EMPTY_COMMAND_MENU_CONTEXT_API,
|
||||
});
|
||||
|
||||
+50
-8
@@ -1,21 +1,63 @@
|
||||
import { CoreObjectNameSingular } from 'twenty-shared/types';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { CommandMenuContextProviderServerItems } from '@/command-menu-item/server-items/common/contexts/CommandMenuContextProviderServerItems';
|
||||
import { useCommandMenuContextApi } from '@/command-menu-item/hooks/useCommandMenuContextApi';
|
||||
|
||||
import { CommandMenuContextProviderContent } from './CommandMenuContextProviderContent';
|
||||
import { CommandMenuContextProviderWithWorkflowEnrichment } from './CommandMenuContextProviderWithWorkflowEnrichment';
|
||||
|
||||
type CommandMenuContextProviderProps = {
|
||||
isInSidePanel: boolean;
|
||||
displayType: CommandMenuContextType['displayType'];
|
||||
containerType: CommandMenuContextType['containerType'];
|
||||
children: React.ReactNode;
|
||||
};
|
||||
|
||||
export const CommandMenuContextProvider = ({
|
||||
children,
|
||||
isInSidePanel,
|
||||
displayType,
|
||||
containerType,
|
||||
}: Omit<CommandMenuContextType, 'commandMenuItems'> & {
|
||||
children: React.ReactNode;
|
||||
}) => {
|
||||
children,
|
||||
}: CommandMenuContextProviderProps) => {
|
||||
const commandMenuContextApiFromHook = useCommandMenuContextApi();
|
||||
|
||||
const commandMenuContextApi = isInSidePanel
|
||||
? { ...commandMenuContextApiFromHook, isInSidePanel: true }
|
||||
: commandMenuContextApiFromHook;
|
||||
|
||||
const currentObjectNameSingular =
|
||||
commandMenuContextApi.objectMetadataItem.nameSingular;
|
||||
|
||||
const isWorkflow =
|
||||
currentObjectNameSingular === CoreObjectNameSingular.Workflow;
|
||||
|
||||
const selectedWorkflowRecordIds = isWorkflow
|
||||
? commandMenuContextApi.selectedRecords
|
||||
.map((record) => record.id)
|
||||
.filter(isDefined)
|
||||
: [];
|
||||
|
||||
if (selectedWorkflowRecordIds.length > 0) {
|
||||
return (
|
||||
<CommandMenuContextProviderWithWorkflowEnrichment
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
commandMenuContextApi={commandMenuContextApi}
|
||||
selectedWorkflowRecordIds={selectedWorkflowRecordIds}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderWithWorkflowEnrichment>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<CommandMenuContextProviderServerItems
|
||||
isInSidePanel={isInSidePanel}
|
||||
<CommandMenuContextProviderContent
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
commandMenuContextApi={commandMenuContextApi}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderServerItems>
|
||||
</CommandMenuContextProviderContent>
|
||||
);
|
||||
};
|
||||
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
import {
|
||||
CommandMenuContext,
|
||||
type CommandMenuContextType,
|
||||
} from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { commandMenuItemsSelector } from '@/command-menu-item/states/commandMenuItemsSelector';
|
||||
import { doesCommandMenuItemMatchObjectMetadataId } from '@/command-menu-item/utils/doesCommandMenuItemMatchObjectMetadataId';
|
||||
import { useAtomStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomStateValue';
|
||||
import { useMemo } from 'react';
|
||||
import { type CommandMenuContextApi } from 'twenty-shared/types';
|
||||
import { evaluateConditionalAvailabilityExpression } from 'twenty-shared/utils';
|
||||
|
||||
type CommandMenuContextProviderContentProps = {
|
||||
displayType: CommandMenuContextType['displayType'];
|
||||
containerType: CommandMenuContextType['containerType'];
|
||||
children: React.ReactNode;
|
||||
commandMenuContextApi: CommandMenuContextApi;
|
||||
};
|
||||
|
||||
export const CommandMenuContextProviderContent = ({
|
||||
displayType,
|
||||
containerType,
|
||||
children,
|
||||
commandMenuContextApi,
|
||||
}: CommandMenuContextProviderContentProps) => {
|
||||
const commandMenuItems = useAtomStateValue(commandMenuItemsSelector);
|
||||
|
||||
const filteredCommandMenuItems = useMemo(() => {
|
||||
const currentObjectMetadataItemId =
|
||||
commandMenuContextApi.objectMetadataItem.id;
|
||||
|
||||
return commandMenuItems
|
||||
.filter(
|
||||
doesCommandMenuItemMatchObjectMetadataId(currentObjectMetadataItemId),
|
||||
)
|
||||
.filter((item) =>
|
||||
evaluateConditionalAvailabilityExpression(
|
||||
item.conditionalAvailabilityExpression,
|
||||
commandMenuContextApi,
|
||||
),
|
||||
)
|
||||
.sort(
|
||||
(firstItem, secondItem) => firstItem.position - secondItem.position,
|
||||
);
|
||||
}, [commandMenuItems, commandMenuContextApi]);
|
||||
|
||||
return (
|
||||
<CommandMenuContext.Provider
|
||||
value={{
|
||||
displayType,
|
||||
containerType,
|
||||
commandMenuItems: filteredCommandMenuItems,
|
||||
commandMenuContextApi,
|
||||
}}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContext.Provider>
|
||||
);
|
||||
};
|
||||
+9
-13
@@ -2,28 +2,25 @@ import { type CommandMenuContextApi } from 'twenty-shared/types';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
|
||||
import { type CommandMenuContextType } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { useWorkflowsWithCurrentVersions } from '@/command-menu-item/server-items/common/hooks/useWorkflowsWithCurrentVersions';
|
||||
import { useWorkflowsWithCurrentVersions } from '@/command-menu-item/hooks/useWorkflowsWithCurrentVersions';
|
||||
|
||||
import { CommandMenuContextProviderServerItemsContent } from './CommandMenuContextProviderServerItemsContent';
|
||||
import { CommandMenuContextProviderContent } from './CommandMenuContextProviderContent';
|
||||
|
||||
type CommandMenuContextProviderServerItemsWithWorkflowEnrichmentProps = {
|
||||
isInSidePanel: CommandMenuContextType['isInSidePanel'];
|
||||
type CommandMenuContextProviderWithWorkflowEnrichmentProps = {
|
||||
displayType: CommandMenuContextType['displayType'];
|
||||
containerType: CommandMenuContextType['containerType'];
|
||||
children: React.ReactNode;
|
||||
commandMenuContextApi: CommandMenuContextApi;
|
||||
selectedWorkflowRecordIds: string[];
|
||||
};
|
||||
|
||||
export const CommandMenuContextProviderServerItemsWithWorkflowEnrichment = ({
|
||||
isInSidePanel,
|
||||
export const CommandMenuContextProviderWithWorkflowEnrichment = ({
|
||||
displayType,
|
||||
containerType,
|
||||
children,
|
||||
commandMenuContextApi,
|
||||
selectedWorkflowRecordIds,
|
||||
}: CommandMenuContextProviderServerItemsWithWorkflowEnrichmentProps & {
|
||||
commandMenuContextApi: CommandMenuContextApi;
|
||||
selectedWorkflowRecordIds: string[];
|
||||
}) => {
|
||||
}: CommandMenuContextProviderWithWorkflowEnrichmentProps) => {
|
||||
const workflowsWithCurrentVersions = useWorkflowsWithCurrentVersions(
|
||||
selectedWorkflowRecordIds,
|
||||
);
|
||||
@@ -53,13 +50,12 @@ export const CommandMenuContextProviderServerItemsWithWorkflowEnrichment = ({
|
||||
};
|
||||
|
||||
return (
|
||||
<CommandMenuContextProviderServerItemsContent
|
||||
isInSidePanel={isInSidePanel}
|
||||
<CommandMenuContextProviderContent
|
||||
displayType={displayType}
|
||||
containerType={containerType}
|
||||
commandMenuContextApi={enrichedCommandMenuContextApi}
|
||||
>
|
||||
{children}
|
||||
</CommandMenuContextProviderServerItemsContent>
|
||||
</CommandMenuContextProviderContent>
|
||||
);
|
||||
};
|
||||
@@ -1,32 +0,0 @@
|
||||
import { CommandConfigContext } from '@/command-menu-item/contexts/CommandConfigContext';
|
||||
import { CommandMenuItemDisplay } from '@/command-menu-item/display/components/CommandMenuItemDisplay';
|
||||
import { useCloseCommandMenu } from '@/command-menu-item/hooks/useCloseCommandMenu';
|
||||
import { useContext } from 'react';
|
||||
|
||||
export const Command = ({
|
||||
onClick,
|
||||
closeSidePanelOnShowPageOptionsExecution = false,
|
||||
closeSidePanelOnCommandMenuListExecution = true,
|
||||
}: {
|
||||
onClick: () => void;
|
||||
closeSidePanelOnShowPageOptionsExecution?: boolean;
|
||||
closeSidePanelOnCommandMenuListExecution?: boolean;
|
||||
}) => {
|
||||
const commandMenuItemConfig = useContext(CommandConfigContext);
|
||||
|
||||
const { closeCommandMenu } = useCloseCommandMenu({
|
||||
closeSidePanelOnShowPageOptionsExecution,
|
||||
closeSidePanelOnCommandMenuListExecution,
|
||||
});
|
||||
|
||||
if (!commandMenuItemConfig) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const handleClick = () => {
|
||||
closeCommandMenu();
|
||||
onClick();
|
||||
};
|
||||
|
||||
return <CommandMenuItemDisplay onClick={handleClick} />;
|
||||
};
|
||||
-58
@@ -1,58 +0,0 @@
|
||||
import { type CommandMenuItemDisplayProps } from '@/command-menu-item/display/components/CommandMenuItemDisplay';
|
||||
import { getCommandMenuItemLabel } from '@/command-menu-item/utils/getCommandMenuItemLabel';
|
||||
import { SelectableListItem } from '@/ui/layout/selectable-list/components/SelectableListItem';
|
||||
import { SelectableListComponentInstanceContext } from '@/ui/layout/selectable-list/states/contexts/SelectableListComponentInstanceContext';
|
||||
import { isSelectedItemIdComponentFamilyState } from '@/ui/layout/selectable-list/states/isSelectedItemIdComponentFamilyState';
|
||||
import { useAvailableComponentInstanceIdOrThrow } from '@/ui/utilities/state/component-state/hooks/useAvailableComponentInstanceIdOrThrow';
|
||||
import { useAtomComponentFamilyStateValue } from '@/ui/utilities/state/jotai/hooks/useAtomComponentFamilyStateValue';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { MenuItem } from 'twenty-ui/navigation';
|
||||
|
||||
export const CommandDropdownItem = ({
|
||||
action,
|
||||
onClick,
|
||||
to,
|
||||
disabled = false,
|
||||
}: {
|
||||
action: CommandMenuItemDisplayProps;
|
||||
onClick?: () => void;
|
||||
to?: string;
|
||||
disabled?: boolean;
|
||||
}) => {
|
||||
const navigate = useNavigate();
|
||||
|
||||
const handleClick = () => {
|
||||
if (disabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
onClick?.();
|
||||
if (isDefined(to)) {
|
||||
navigate(to);
|
||||
}
|
||||
};
|
||||
|
||||
const selectableListInstanceId = useAvailableComponentInstanceIdOrThrow(
|
||||
SelectableListComponentInstanceContext,
|
||||
);
|
||||
|
||||
const isSelectedItemId = useAtomComponentFamilyStateValue(
|
||||
isSelectedItemIdComponentFamilyState,
|
||||
action.key,
|
||||
selectableListInstanceId,
|
||||
);
|
||||
|
||||
return (
|
||||
<SelectableListItem itemId={action.key} onEnter={handleClick}>
|
||||
<MenuItem
|
||||
focused={isSelectedItemId}
|
||||
key={action.key}
|
||||
LeftIcon={action.Icon}
|
||||
onClick={handleClick}
|
||||
text={getCommandMenuItemLabel(action.label)}
|
||||
disabled={disabled}
|
||||
/>
|
||||
</SelectableListItem>
|
||||
);
|
||||
};
|
||||
-21
@@ -1,21 +0,0 @@
|
||||
import { CommandMenuItemDisplay } from '@/command-menu-item/display/components/CommandMenuItemDisplay';
|
||||
import { useCloseCommandMenu } from '@/command-menu-item/hooks/useCloseCommandMenu';
|
||||
import { type PathParam } from 'react-router-dom';
|
||||
import { type AppPath } from 'twenty-shared/types';
|
||||
import { getAppPath } from 'twenty-shared/utils';
|
||||
|
||||
export const CommandLink = <T extends AppPath>({
|
||||
to,
|
||||
params,
|
||||
queryParams,
|
||||
}: {
|
||||
to: T;
|
||||
params?: { [key in PathParam<T>]: string | null };
|
||||
queryParams?: Record<string, any>;
|
||||
}) => {
|
||||
const { closeCommandMenu } = useCloseCommandMenu();
|
||||
|
||||
const path = getAppPath(to, params, queryParams);
|
||||
|
||||
return <CommandMenuItemDisplay onClick={closeCommandMenu} to={path} />;
|
||||
};
|
||||
-61
@@ -1,61 +0,0 @@
|
||||
import { type CommandMenuItemDisplayProps } from '@/command-menu-item/display/components/CommandMenuItemDisplay';
|
||||
import { getCommandMenuItemLabel } from '@/command-menu-item/utils/getCommandMenuItemLabel';
|
||||
import { CommandMenuItem } from '@/command-menu/components/CommandMenuItem';
|
||||
import { SelectableListItem } from '@/ui/layout/selectable-list/components/SelectableListItem';
|
||||
import { useNavigate } from 'react-router-dom';
|
||||
import { isDefined } from 'twenty-shared/utils';
|
||||
import { Loader } from 'twenty-ui/feedback';
|
||||
import { CommandListItemLoader } from './CommandListItemLoader';
|
||||
|
||||
export const CommandListItem = ({
|
||||
action,
|
||||
onClick,
|
||||
to,
|
||||
disabled = false,
|
||||
progress,
|
||||
showDisabledLoader = false,
|
||||
}: {
|
||||
action: CommandMenuItemDisplayProps;
|
||||
onClick?: () => void;
|
||||
to?: string;
|
||||
disabled?: boolean;
|
||||
progress?: number;
|
||||
showDisabledLoader?: boolean;
|
||||
}) => {
|
||||
const navigate = useNavigate();
|
||||
const handleClick = () => {
|
||||
if (disabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
onClick?.();
|
||||
if (isDefined(to)) {
|
||||
navigate(to);
|
||||
}
|
||||
};
|
||||
|
||||
const loaderComponent =
|
||||
disabled && showDisabledLoader ? (
|
||||
isDefined(progress) ? (
|
||||
<CommandListItemLoader progress={progress} />
|
||||
) : (
|
||||
<Loader />
|
||||
)
|
||||
) : undefined;
|
||||
|
||||
return (
|
||||
<SelectableListItem itemId={action.key} onEnter={handleClick}>
|
||||
<CommandMenuItem
|
||||
id={action.key}
|
||||
Icon={action.Icon}
|
||||
label={getCommandMenuItemLabel(action.label)}
|
||||
description={getCommandMenuItemLabel(action.description)}
|
||||
to={to}
|
||||
onClick={disabled ? undefined : onClick}
|
||||
hotKeys={action.hotKeys}
|
||||
disabled={disabled}
|
||||
RightComponent={loaderComponent}
|
||||
/>
|
||||
</SelectableListItem>
|
||||
);
|
||||
};
|
||||
-23
@@ -1,23 +0,0 @@
|
||||
import { CommandMenuButton } from '@/command-menu/components/CommandMenuButton';
|
||||
import { type CommandMenuItemDisplayProps } from '@/command-menu-item/display/components/CommandMenuItemDisplay';
|
||||
|
||||
export const CommandMenuItemButton = ({
|
||||
action,
|
||||
onClick,
|
||||
to,
|
||||
disabled = false,
|
||||
}: {
|
||||
action: CommandMenuItemDisplayProps;
|
||||
onClick?: (event?: React.MouseEvent<HTMLElement>) => void;
|
||||
to?: string;
|
||||
disabled?: boolean;
|
||||
}) => {
|
||||
return (
|
||||
<CommandMenuButton
|
||||
command={action}
|
||||
to={to}
|
||||
onClick={onClick}
|
||||
disabled={disabled}
|
||||
/>
|
||||
);
|
||||
};
|
||||
-14
@@ -1,14 +0,0 @@
|
||||
import { CommandConfigContext } from '@/command-menu-item/contexts/CommandConfigContext';
|
||||
import { type CommandMenuItemConfig } from '@/command-menu-item/types/CommandMenuItemConfig';
|
||||
|
||||
export const CommandMenuItemComponent = ({
|
||||
action,
|
||||
}: {
|
||||
action: CommandMenuItemConfig;
|
||||
}) => {
|
||||
return (
|
||||
<CommandConfigContext.Provider value={action}>
|
||||
{action.component}
|
||||
</CommandConfigContext.Provider>
|
||||
);
|
||||
};
|
||||
-89
@@ -1,89 +0,0 @@
|
||||
import { CommandMenuItemButton } from '@/command-menu-item/display/components/CommandMenuItemButton';
|
||||
import { CommandDropdownItem } from '@/command-menu-item/display/components/CommandDropdownItem';
|
||||
import { CommandListItem } from '@/command-menu-item/display/components/CommandListItem';
|
||||
import { CommandConfigContext } from '@/command-menu-item/contexts/CommandConfigContext';
|
||||
import { CommandMenuContext } from '@/command-menu-item/contexts/CommandMenuContext';
|
||||
import { useIsCommandBlockedByGlobalLayoutCustomization } from '@/command-menu-item/hooks/useIsCommandBlockedByGlobalLayoutCustomization';
|
||||
import { type MessageDescriptor } from '@lingui/core';
|
||||
import { useContext } from 'react';
|
||||
import { type Nullable } from 'twenty-shared/types';
|
||||
import { assertUnreachable } from 'twenty-shared/utils';
|
||||
import { type IconComponent } from 'twenty-ui/display';
|
||||
import { type MenuItemAccent } from 'twenty-ui/navigation';
|
||||
|
||||
export type CommandMenuItemDisplayProps = {
|
||||
key: string;
|
||||
label: Nullable<MessageDescriptor | string>;
|
||||
shortLabel?: Nullable<MessageDescriptor | string>;
|
||||
description?: MessageDescriptor | string;
|
||||
Icon: IconComponent;
|
||||
isPrimaryCTA?: boolean;
|
||||
accent?: MenuItemAccent;
|
||||
hotKeys?: Nullable<string[]>;
|
||||
};
|
||||
|
||||
export const CommandMenuItemDisplay = ({
|
||||
onClick,
|
||||
to,
|
||||
disabled,
|
||||
progress,
|
||||
showDisabledLoader = false,
|
||||
}: {
|
||||
onClick?: (event?: React.MouseEvent<HTMLElement>) => void;
|
||||
to?: string;
|
||||
disabled?: boolean;
|
||||
progress?: number;
|
||||
showDisabledLoader?: boolean;
|
||||
}) => {
|
||||
const action = useContext(CommandConfigContext);
|
||||
const { displayType } = useContext(CommandMenuContext);
|
||||
const isBlockedByGlobalLayoutCustomization =
|
||||
useIsCommandBlockedByGlobalLayoutCustomization(action);
|
||||
|
||||
if (!action) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const isDisabled =
|
||||
disabled === true || isBlockedByGlobalLayoutCustomization === true;
|
||||
|
||||
const onClickWhenEnabled = isDisabled ? undefined : onClick;
|
||||
const toWhenEnabled = isDisabled ? undefined : to;
|
||||
|
||||
if (displayType === 'button') {
|
||||
return (
|
||||
<CommandMenuItemButton
|
||||
action={action}
|
||||
onClick={onClickWhenEnabled}
|
||||
to={toWhenEnabled}
|
||||
disabled={isDisabled}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
if (displayType === 'listItem') {
|
||||
return (
|
||||
<CommandListItem
|
||||
action={action}
|
||||
onClick={onClickWhenEnabled}
|
||||
to={toWhenEnabled}
|
||||
disabled={isDisabled}
|
||||
progress={progress}
|
||||
showDisabledLoader={showDisabledLoader}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
if (displayType === 'dropdownItem') {
|
||||
return (
|
||||
<CommandDropdownItem
|
||||
action={action}
|
||||
onClick={onClickWhenEnabled}
|
||||
to={toWhenEnabled}
|
||||
disabled={isDisabled}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
return assertUnreachable(displayType, 'Unsupported display type');
|
||||
};
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user